[PHP-DEV] PHP 4.0 Bug #6943: flush() doesn't flush before the end of the PHP script exuction From: denis.roux <email protected>
Date: 09/29/00

From: denis.roux <email protected>
Operating system: Windows NT 4.0
PHP version: 4.0.2
PHP Bug Type: Output Control
Bug description: flush() doesn't flush before the end of the PHP script exuction

<html>
<head>
<title>Exemple</title>
</head>
<body>
<?
echo ("script PHP");
echo "should be printed immediatly<br>";
flush();
?>
hello<br>
<?>
sleep(3);
 echo "in fact, printed in the same time that, i.e. after the 3sec. delay !!!";
</script>
</body>
</html>

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