I have a big table which I'm building at runtime, and would like to send each row as soon as it gets done. I've tried flush(), ob_flush(), ob_end_flush() and any combination of the three on data both inside table tags, and outside with no results on either IE or FF. "output_buffering" is reported to be "no value" by phpinfo(). Here's a simplified version of the code:
<?
echo '<table>';
foreach ($arr as $val) {
echo '<tr><td>'.bl_get_results($val).'</td></tr>';
//Flush the row.
}
echo '</table>';
?>
Any ideas on a fix or alternative?