I am designing a page where I need it to update itself only if a numeric value in my MySQL database has changed. Unfortunately, I cannot just use meta-refresh tags or similar, because this page cannot be reloading unless that data value has changed. So the solution I have been researching is using XML HTTPREQUEST or some ajax. Problem is, javascript and ajax is too new for me. Everything else on the page will be made with PHP.
The person that views this page will not be interacting, but rather sitting back and seeing changes only if I change the database value. Sounds like I might need a timer or something just to check if the database has changed, and if it has, then refresh the page.
Any thoughts? Anyone done something like this before?