[PHP] Active page

2002-08-22 Thread Budi Kelana
Hi, I want to make a web page that can retrive data from my tables automatically, periodically. Does PHP have some timer control ? I know we can do with JavaScript (setInterval() or setTimeOut()) but I cann't join java script with PHP. I've tried make simple script with JavaScript to open new

[PHP] Active Page

2002-08-22 Thread Yamin Prabudy
your pages should be dynamic, meaning every time user open your page it keep on getting data from table how about using the Meta tags from html it will refresh you page in x seconds (define x as you need) meta http-equiv=refresh content=x On Thursday 22 August 2002 02:01 pm, Budi Kelana wrote:

Re: [PHP] Active Page

2002-08-22 Thread jochen schultz
Hello, Another possibility might be to open a persistent http connection so the update would be in realtime instead of intervals of x seconds and with a cronjob it might as well be periodically *g* search for fsockopen() or 'persistant http conection' I can confirm Yamins answer also as a