[PHP-DB] Automatic Refresh Page

2002-11-16 Thread Afif
Dear All, I have a question, how to make refresh page in certain time in php? so if my table have new data, in the page will automatic refresh in the certain time. does any one have sample script? would you pls share with me? highly appreciate for yr help -- Warm regards, Afif

Re: [PHP-DB] Automatic Refresh Page

2002-11-16 Thread Peter Beckman
It is done in HTML usually: META HTTP-EQUIV=Refresh CONTENT=10; URL=http://www.htmlhelp.com/; In php. NOTE: This will only work if there is nothing else on the page. If you want to print something then push them after 10 seconds, use the meta refresh above. ?php sleep(10);