Re: [PHP] Tables Loading Slow

2002-01-30 Thread Justin French
Either have 1 table per row, which means each row will display as it loads, rather than waiting for the other 30 or so. Alternatively, you could break it into chunks of 10, or 5 or whatever. I'm using both these methods on a few sites, with no problems. Justin French -- PHP General Mailing Li

Re: [PHP] Tables Loading Slow

2002-01-30 Thread Edward van Bilderbeek - Bean IT
Maybe this is a solution for you: instead of: 1data 1 2data 2 3data 3 4data 4 you can do this: 1data 1 2data 2 3data 3 4data 4 If you can't beat them, join them! Greets, Edward "Adam Leckron" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > f

Re: [PHP] Tables Loading Slow

2002-01-30 Thread Adam Leckron
from the PHP manual [flush()] ...Even the browser may buffer its input before displaying it. Netscape, for example, buffers text until it receives an end-of-line or the beginning of a tag, and it won't render tables until the tag of the outermost table is seen... even if you're flushing the buff

RE: [PHP] Tables Loading Slow

2002-01-30 Thread Darren Gamble
, Regional Services Shaw Cablesystems GP 630 - 3rd Avenue SW Calgary, Alberta, Canada T2P 4L4 (403) 781-4948 -Original Message- From: Bryan Gintz [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 30, 2002 7:39 AM To: PHP List Subject: [PHP] Tables Loading Slow Hi. I have a large database

Re: [PHP] Tables Loading Slow

2002-01-30 Thread Jason Wong
On Wednesday 30 January 2002 22:38, Bryan Gintz wrote: > Hi. > I have a large database query that returns anywhere from 10-30ish > records. The problem comes from loading them in tables. With IE5 and > Netscape 5 on windows, the results do not display until the last > tag is written. Does anyo

Re: [PHP] Tables Loading Slow

2002-01-30 Thread Tony Bibbs
Check the PHP manual on flush() --Tony On Wed, 2002-01-30 at 08:38, Bryan Gintz wrote: > Hi. > I have a large database query that returns anywhere from 10-30ish > records. The problem comes from loading them in tables. With IE5 and > Netscape 5 on windows, the results do not display until th

[PHP] Tables Loading Slow

2002-01-30 Thread Bryan Gintz
Hi. I have a large database query that returns anywhere from 10-30ish records. The problem comes from loading them in tables. With IE5 and Netscape 5 on windows, the results do not display until the last tag is written. Does anyone have any ideas on how to show the results as the come from