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

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 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

[PHP] sleep function

2005-05-12 Thread virtualsoftware
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 namebr; sleep (1); } The scipt works fine but it displays all names at once. I want to display the first

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 namebr; 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

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 namebr; sleep (1); } The scipt works fine

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 namebr; http://php.net/flush sleep (1); } -- Like

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 script

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

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

[PHP] Sleep Function

2003-11-02 Thread Glenn Gasner
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 shared mail server. What I'm trying to do is put a pause between each email sent (like 10 seconds) so I can set it up to send a

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 write

[PHP] sleep() function question

2001-07-22 Thread drb
just wanted to make sure I was not doing anything incorrectly. I want to return some values to the screen and then sleep(), then return more values. It seems that nothing is returned till the sleep is over and then all the values are returned at once. Is this the natural function of sleep();

Re: [PHP] sleep() function question

2001-07-22 Thread Andrew Brampton
ob_implicit_flush that may help as well.. Hope I could help Andrew - Original Message - From: drb [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, July 22, 2001 11:25 PM Subject: [PHP] sleep() function question just wanted to make sure I was not doing anything incorrectly. I want to return