Why when i run this i get an error saying Undefined subroutine &main::start_table called at the line where the pritn start_table is:
How can i write it?
====================================================
print start_form(-action=>'games.pl');
print start_table( {class=>'games'} );
while( $row = $sth->fetchrow_hashref )
{
print Tr(
td( {-width=>'20%'}, submit( $row->{gamename} ))
+,
td( {-width=>'75%'}, $row->{gamedesc} ),
td( {-width=>'5%'}, $row->{gamecounter} )
);
}
print end_table;
print end_form, br;
====================================================
|