Wotcha,
I am working on a project with a very large database that can be searched by the users in a wide range of complicated ways.
This means that the users often have to wait for a long time for something to happen when they press the "search" button.
I was thinking on using something like.
ob_start();
echo "please wait while your seach is processed";
flush();
<<<Do lots of database stuff here>>>
header ("Location: results.php");
ob_end_flush();
When I try this all I get is the redirected page after all the database stuff has run its course.
I am using Apache 2 PHP 4.2.1 on Win2k.
Any ideas,
MrRosary