Re: [PHP] sleep function

2005-05-13 Thread James Williams
Well the reason it worked on my site is because my webhost uses linux, and my localhost is windows. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] sleep function

2005-05-13 Thread Mark Rees
You could try sending all the data to the client at once then achieving the delay effect with JavaScript perhaps? That way, you are not reliant on external factors like connection speed. On Thu, May 12, 2005 8:38 pm, James Williams said: > I just tried a couple of output_buffering on a test script

Re: [PHP] sleep function

2005-05-13 Thread Richard Lynch
On Thu, May 12, 2005 8:38 pm, James Williams said: > I just tried a couple of output_buffering on a test script I made and > it won't work... It simply waits for 10 seconds then displays > everything... Kinda sucks. If you're going to flush() and ob_flush() that much, you might as well not use ob

Re: [PHP] sleep function

2005-05-12 Thread James Williams
Okay... the difference is between Apache + PHP for windows, and Apache + PHP for unix... it works on linux / unix... but not on windows... check it out. http://www.jamwil.com/misc/flush.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] sleep function

2005-05-12 Thread James Williams
I just tried a couple of output_buffering on a test script I made and it won't work... It simply waits for 10 seconds then displays everything... Kinda sucks. On 5/12/05, Richard Lynch <[EMAIL PROTECTED]> wrote: > On Thu, May 12, 2005 12:39 pm, [EMAIL PROTECTED] said: > > I want to create a scrip

Re: [PHP] sleep function

2005-05-12 Thread Richard Lynch
On Thu, May 12, 2005 12:39 pm, [EMAIL PROTECTED] said: > I want to create a script that displays all names from a database once per > second. > A part of the script look like this. > > for ($i=0; $i<$total_names; $i++) > { > echo "name"; http://php.net/flush > sleep (1); > }

Re: [PHP] sleep function

2005-05-12 Thread James Williams
On 5/12/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > > I want to create a script that displays all names from a database once per > second. > A part of the script look like this. > > for ($i=0; $i<$total_names; $i++) > { > echo "name"; > sleep (1); > } > > The sc

Re: [PHP] sleep function

2005-05-12 Thread Philip Hallstrom
Hi, I want to create a script that displays all names from a database once per second. A part of the script look like this. for ($i=0; $i<$total_names; $i++) { echo "name"; sleep (1); } The scipt works fine but it displays all names at once. I want to display the first name, then

Re: [PHP] Sleep Function

2003-11-03 Thread Marek Kilimajer
It is exactly what you need. And you can lower the sleep time, I think 1 or 2 seconds are just enough. Glenn Gasner wrote: The php.net documentation for the sleep and usleep functions has me confused. I'm using shared hosting and I need to email my whole mailing list while not clogging the share

RE: [PHP] sleep() function question

2001-07-23 Thread Patrick Lynch
:[EMAIL PROTECTED]] Sent: 23 July 2001 02:38 To: drb Cc: [EMAIL PROTECTED] Subject: Re: [PHP] sleep() function question I know very little about PHP, but in other languages, what u describe happens because the webserver doesn't send the output until the excution is done... But you can make it

Re: [PHP] sleep() function question

2001-07-22 Thread Andrew Brampton
I know very little about PHP, but in other languages, what u describe happens because the webserver doesn't send the output until the excution is done... But you can make it write your output as its generated... check out the function "flush" also after 20seconds of looking, I found "ob_implicit