in reply to Re^2: loading a .txe into a database
in thread loading a .txe into a database
==================================================== 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; ====================================================
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: loading a .txe into a database
by polettix (Vicar) on May 03, 2005 at 11:29 UTC |