in reply to Re^3: HTML::Table multi-row head
in thread HTML::Table multi-row head

You could try the following:

$table->addRow( @{$sth->{NAME}} ); $table->setRowHead(1); $table->addRow( @{$sth->{NAME}} ); $table->setRowHead(2);

However, I'm not sure what the exact problem is here. Please try checking your server error log to see if any useful messages are being generated.