[PHP-DEV] Bug #10752: infinite loops prevents pages from loading From: anabolic <email protected>
Date: 05/09/01

From: anabolic <email protected>
Operating system: Linux and Win2k
PHP version: 4.0.4pl1
PHP Bug Type: *Programming Data Structures
Bug description: infinite loops prevents pages from loading

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

-- 
Edit Bug report at: http://bugs.php.net/?id=10752&edit=1

-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>