on Win2K/Apache 1.3/ PHP 4.3.1
I have a script which performs several ODBC queries which take up to 5 minutes each. I want to do somethign like
<html>
<body>
Please Wait<br>
<?
----Query HERE----
echo "Part 1 Complete<be>\n";
flush();
----Query 2 HERE----
echo "Part 2 Complete<be>\n";
flush();
?>
etc etc....
I have tried flush();
tried flush():flush();flush();
tried flush();ob_flush();
tried adding 255 chars of blank space...
But on Netscape and on IE it appears as if the server is not sending anything until the php script has completed (not flushing to the browser)......
Has anyone gotten this to work on windows?