RE: [PHP] No output

2001-03-27 Thread Jason Murray
> you can't stream output like that...netscape will wait until your > HTML output is done, but if you're infinitely looping, it won't be, and > you'll never get your tags.i've seen a number of > posts trying to do chats and flush() the output, but bottom line, if you > don't send it a com

Re: [PHP] No output

2001-03-27 Thread Jack Dempsey
you can't stream output like that...netscape will wait until your HTML output is done, but if you're infinitely looping, it won't be, and you'll never get your tags.i've seen a number of posts trying to do chats and flush() the output, but bottom line, if you don't send it a complete html

[PHP] No output

2001-03-27 Thread Sean B.
I'm attempting to write a chat which streams HTML. There's a problem with the main function that's responsible for 'streaming'. It loops endlessly and if anytihng new appears in the database, it parses it into HTML and outputs it via the echo command. The chatboxDisplay method is what is respon