On Tue, 12 Sep 2000 [EMAIL PROTECTED] wrote:
>
> Hi
>
> I am using the CGI table function to print tables;
>
> These tables can become quite large.
> The html result is generated in a single print.
> So using $| to show some output to the user is not of any use since it
> works after every print..
>
> I find the table function convenient, so I was hoping for another way of
> flushing the output.
>
> Clues?
this is not really a mod_perl issue, but ....
not to be flippant, but could you just break the data up? if you're
delivering a lot of data to the client, their browser is most likely going
to wait for *all* the data to be received before drawing anything. just
send a hundred rows at a time or something. let them click on something
to see another resultset.
ky