Hey all,
I have a script that pulls a MySql database to see if there are any jobs for it to do. The jobs get inserted via a PHP script based on what the user inputs.
There is an html table that is generated by PHP that shows the jobs, there status, start and end time (you get the idea) from MySql. What I would like to do here is have the html table auto update every 15 seconds or so as long as there is a job in progress (should be a simple if statement) but I do not want the entire page to reload.
What my issue is that I have no idea where to start to get something like this done. At the present time the table is generated but never changes unless the page is reloaded.
Is this even possible to do this with PHP?