Re: [PHP] how to force a refresh?

2003-03-13 Thread - Edwin
There is an HTML solution, but I can't remember offhand what it is. meta http-equiv=refresh content=1;url=http://where2go.after; / ? - E __ Do You Yahoo!? Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.jp/ -- PHP General Mailing List

Re: [PHP] how to force a refresh?

2003-03-13 Thread - Edwin
Or, just: meta http-equiv=refresh content=1 / ...if the same page. Note: 1 is the number of seconds... - E __ Do You Yahoo!? Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.jp/ -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] how to force a refresh?

2003-03-13 Thread Michael Sims
On Thu, 13 Mar 2003 02:25:57 -0800, you wrote: Ok, well I have a form that uploads images, but of course the problem is, is that IE caches the uploaded images. The only way to clear the cache is to refresh, but that isn't a very user friendly approach. I've tried the following header tags: You

[PHP] how to force a refresh?

2003-03-12 Thread christian calloway
Ok, well I have a form that uploads images, but of course the problem is, is that IE caches the uploaded images. The only way to clear the cache is to refresh, but that isn't a very user friendly approach. I've tried the following header tags: Header(Pragma: no-cache); Header(Expires: Mon, 26 Jul

Re: [PHP] how to force a refresh?

2003-03-12 Thread Liam Gibbs
but of course no luck. Is there a way I can force a refresh from my script? There is an HTML solution, but I can't remember offhand what it is. HTML would be the only way to go, I'd say, since once the page is in the browser's hands, PHP can't do anything about it. -- PHP General Mailing List