Hi! here is my test code
<?php
ob_start();
for ($n=1;$n<10;$n++) {
echo "test<br>";
ob_end_flush();
sleep(2);
}
?>
I can make this work on php and apache. I always get output
in one shot not line by line. If i try this code with php and
iis it works.
What am i doing wrong. Do i have to tell apache to send line
by line to browser not everything together.
--
lp,
Uros
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

