|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-05-21 03:16 UTC] rasmus@php.net
[2002-05-21 03:34 UTC] bobby_zhu at hotmail dot com
[2002-05-21 03:34 UTC] bobby_zhu at hotmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 09:00:02 2025 UTC |
I want to use the Server-push technology to create my website in Win98+Apache. However when I use the following code: while(!connection_aborted()){ echo 'Hello.'; //..some other code.. flush(); sleep(5); set_time_limit(10); //to prevent the code from time limit } However, the code doesn't send 'Hello' to the Browser(IE 6.0) every 5 seconds, Actually It DOESN'T SEND ANY CODE TO THE BROWSER. I am confused, my boss is ANGRY at my slow work. Please help me. Thank you.