I have to add that I am using the latest PHP version.
It was Windows and Linux servers I was talking about.
usleep work in the way that it return right away without any sleep time.

Benny

""Benny Nissen"" <[EMAIL PROTECTED]> skrev i en meddelelse
94k0ql$em$[EMAIL PROTECTED]">news:94k0ql$em$[EMAIL PROTECTED]...
> Hi All
>
> I have tried to get this to work but it does not produce any output in the
> browser - why
>
> $i = 1;
> while ($i)
> {
>  if(connection_aborted())
>   break;
>
>  echo $i;
>  echo "<BR>";
>     $i++;
>
>  sleep(1);
> //usleep(1000);
> }
>
> It turns out that the sleep and usleep does not return as far as I can
tell.
> If I use usleep the wait time parameter have no affect on program
execution
> ??
> Tried this on both Windows and Linux.
>
> Benny
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to