[PHP] flush() issue

2002-11-20 Thread Jock Pereira
Having an issue getting flush to work. Browser version is IE 6 sp1. I am not using mod_gzip on Apache. In the following code sample you can see that I am looping through a mysql result array and using a different include each time. At the end of the foreach loop I am attempting to flush to the

Re: [PHP] flush() issue

2002-11-20 Thread Marek Kilimajer
I don't see an y newlines, try adding some. Is it working with other browsers? Jock Pereira wrote: Having an issue getting flush to work. Browser version is IE 6 sp1. I am not using mod_gzip on Apache. In the following code sample you can see that I am looping through a mysql result array and

Re: [PHP] flush() issue

2002-11-20 Thread @ Edwin
Hello, Andrew Brampton [EMAIL PROTECTED] wrote: Are you outputing each row in a table? IE won't start displaying the table until the /table tag, that might be causing your problem... ...then, CSS to the rescue... :) Try this: table style=table-layout:fixed ... /table HTH, - E --