hey there,
i am building a page that browse to all the pages in
my site using fopen(). is it possible to make a
display process page that flushes a string to the
browser each time fopen reach another page in the
site?.
so what i mean is:
it should display a message like:
page visited foo.php ..
page visited bar.php ..
but the messages should apear 1 at a time without
reloading the html page.
i think this could be done with flushing the content.
but i don't know how. I tried putting a ob_start() at
the beginning of a code block within a for loop and a
ob_end_flush at the end of the block. but still it
renders the page in one go and send me the whole
messages stream at once.
please any help would be appreciated.
thnx in advance for the help