|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-09 10:42 UTC] cnewbill@php.net
[2001-05-10 07:45 UTC] anabolic at begendik dot com dot tr
[2001-05-10 11:25 UTC] cnewbill@php.net
[2001-05-10 13:17 UTC] anabolic at begendik dot com dot tr
[2001-05-21 20:37 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 00:00:01 2025 UTC |
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1254"> <title>Loop</title> </head> <body> <? for($value=1; $value>0; $value++){ echo"<br>$value"; flush(); sleep(1); } ?> </body> </html> The code above does not work when opened in more than two browsers on the same computer. Any ideas? Thank you.