[EMAIL PROTECTED] wrote:
> I have to
> print "<table>";
> foreach $row(@$recordset)
> {
> print Tr([td([@$row[1..18]])]);
> }
> print "</table>";
I had this prob with a classified ad engine, it was the one big table that choked the
browser so I made every row a table. the page actually takes about the same amount of
time to
transfer but you see displayed results at once:
foreach $row(@$recordset)
{
print "<table>";
print Tr([td([@$row[1..18]])]);
print "</tr></table>";
}
--
Dr. John Griffiths \( ~ )7 The Teahouse of Experience
MAILTO:[EMAIL PROTECTED] http://www.frontier.net/~grifftoe/
O, call back yesterday. Richard II, act 3, sc. 2.
***
from our Free Advice Department:
Do not put fireworks on the grill.
Whether you're rolling out the old "smokey joe" or firing up a seventy-burner Galaxy
Blaster, never ever ever put explosives on your barbeque.
NextCard News, 19 Jul 2001
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]