Hi,

I would like to force the output of php in one page.

The result set is clustered and I want to send to the browser
a cluster as soon as the processing is done.

Can I do this?
I tried output buffering and something like this:

<?php

ob_start();

echo microtime();

ob_end_flush();

for ($i=0;$i<=100000;$i++) {
 $j = md5($i);
}

ob_start();

echo "<hr>";
echo microtime();

ob_end_flush();
?>

But no way
--

Regards,
----------------------------------------------
Calin Uioreanu
[EMAIL PROTECTED]
Tel: +49 - (0) 89 - 25 55 17 23
http://www.ciao.com
----------------------------------------------



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to