Can you help me in use this command:
void flush(void)
I have to empty php buffer in a heavy file.
Can I use FLUSH to do this? And where I have to put in my php file?
At the end or in the middle?
Use thi example to explain me all.
<?
$sql = "SELECT * FROM tab";
$sql_result = mysql_query($sql,$connection);
while ($ValoriRiga = mysql_fetch_array($sql_result))
{
$val0 = $ValoriRiga["$campo0"];
echo $val0;
}
flush(void);
?>