i have this script that takes a real long time to process.
During each iteration my loop of action i have the following code
ob_start();
echo "<!-- Trying -->\n\n";
print str_repeat( " " , 300 ) . "\n";
ob_end_flush();
flush();
After successfull completion i do the following
echo "<META http-equiv='Refresh' content='0; url=$ReturnURL'>";
echo PAGELOADING;
exit();
what happening is that I'm getting a document that contains no data
any ideas on why ?