Hi All,

On Sat, Dec 23, 2000 at 09:38:11AM -0800, quagly wrote:
> This is the relevant code:
> 
> while ($sth->fetch) {
>    $r->print ("<TR>",
>        map("<TD>$_</TD>",@cols),
>        "</TR>");
>   $r->rflush;
> }

A thought is knocking at the back of my head - browsers don't render
tables until they've got the whole thing. I think. Try sending lots
of single-row tables instead of one big table...?

Also, you may find it useful to send output in chunks. Keep a wee
counter in the loop and send output every $n$ items or so. Maybe.

ATB,
Wesley.

Reply via email to