Re: [PHP] auto refresh once

2005-03-02 Thread Bret Hughes
On Wed, 2005-03-02 at 01:55, William Stokes wrote: Hello, Is it possible to force one automatic refresh browser when user enters to a webpage? If so, how? javascript timer and a reload in a function called vi body onLoad wouldd do it I guess. if you are only going to do it once you need

Re: [PHP] auto refresh once

2005-03-02 Thread Devraj Mukherjee
Hi Will, Automatic refresh can be achieved by the use of a META tag. The meta tag looks like the following, where the 5 is the number of seconds, the URL is obviously the page. meta http-equiv=REFRESH CONTENT=5; URL=http://www.url.com/; To refresh all you do is send the META tag out as part of

RE: [PHP] auto refresh once

2005-03-02 Thread yangshiqi
] Sent: Wednesday, March 02, 2005 3:55 PM To: php-general@lists.php.net Subject: [PHP] auto refresh once Hello, Is it possible to force one automatic refresh browser when user enters to a webpage? If so, how? Thanks -Will -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] auto refresh once

2005-03-02 Thread Burhan Khalid
William Stokes wrote: Hello, Is it possible to force one automatic refresh browser when user enters to a webpage? If so, how? Use the header() function. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] auto refresh once

2005-03-01 Thread William Stokes
Hello, Is it possible to force one automatic refresh browser when user enters to a webpage? If so, how? Thanks -Will -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php