Hello all. How can I flush tables to the browser. The test code below will only flush if I close the table. How can I get a page to flush witout closing the table?? Please help. Thanks
<html>
<body>
<pre>
<br clear=all />
<?
$count = 0;
while ($count < 100) {
echo "<table><tr><td>";
echo " * Counting.... ";
$count++;
echo "<b>$count</b><br />";
echo "</td></tr></table>";
flush();
sleep(1);
}
?>
</pre>
</body>
</html>