What I have is a mysql table which is updated by a php form page, this is working as expected. What I am trying to set up an alternate page which will be view only on remote terminals around the shop that updates as the table is updated.
Is there any technology out there I can look into that can do this outside of some kind of refresh timer? I have set up a few ajax functions in some of my other pages but I dont think that is going to help (at least I havnt yet been able to make it work) as I believe the request needs to come from the page being updated with the ajax request. Or perhaps some way to send some info from the form page to the display page that tells it to update the info?
Basically what is happening here is we have a station set up where each employee scans into a job when they start working on said job which inserts the relevant info into the mysql table. We have a few remote monitors around the shop that we want to use to display a list of jobs that are currently being worked on and countdown of the man hours spent on each particular job. These remote monitors however will have no real interaction, only purpose is to display info. So if 3 people are working on "JOB313" and one of them scans into "JOB296" then that info could be updated on the display page.
jQuery Countdown is what I am just now starting to look into to do the countdown timers (if theres a better option please point me in that direction) I still need to figure out how to get this "display" page to update when the data changes.
I know this is long and I do apologize for that and thank you for taking the time to read it and potentially point me in the right direction. I am not looking for someone to do the work for me I just need to know where to start researching.
Thanks much.