Re: [PHP] run a fuction at each intervals

2001-06-27 Thread Tom Carter
this sort of works.. I did a similar thing on a site.. but it *really* is not what HTTP is designed for + you start to get all kinds of things... main problem being it won't execute code afterwards to then.. if, for example, it is displayed in a table then that won't work + some browsers may not d

Re: [PHP] run a fuction at each intervals

2001-06-26 Thread Tom Carter
Did you want these all to appear on the same page? If so then that can't be done.. the nature of HTTP (the method of delivering pages to the browser) doesn't allow for this sort of thing.. theres nothing PHP can do about that. The only alternative I can suggest is for the page to refresh/redirect

Re: [PHP] run a fuction at each intervals

2001-06-26 Thread elias
You have multiple choices... You can make your life easy with a simple javascript like: file.php or you can use the meta tag equiv like: http://server/timeup.php";> be more specific...you can do lots of stuff actually... ""ewoong"" <[EMAIL PROTECTED]> wrote in message 9h9ild$jps$[EMAIL

[PHP] run a fuction at each intervals

2001-06-26 Thread ewoong
Hi.. If I want to run a function at each intervals, what function I can use ?? I try to display " Time is Up " each five-minute. " Time is up " after five-minute.. " Time is up " after five-minute..