in reply to Re: using 'use CGI;' and tables
in thread using 'use CGI;' and tables
I'm pretty new to Perl and I just don't quite grasp where I would put the dynamic example in what I have already.while( $row = $sth_sel->fetch()) { $sth_sel->bind_col(1, \$firstname); $sth_sel->bind_col(2, \$lastname); $sth_sel->bind_col(3, \$state); $sth_sel->bind_col(4, \$country); while ( $sth_sel->fetch() ) { print $q->table({-border=>'1', -width=>'560', -cellpadding=>'0', -cell +spacing=>'0'}, $q->Tr({-align=>'CENTER'}, [ $q->td({-width=>'140', -align=>'center'},[$firstname, $lastnam +e, $state, $country]) ] ) ); } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: using 'use CGI;' and tables
by ikegami (Patriarch) on Apr 13, 2006 at 05:13 UTC | |
|
Re^3: using 'use CGI;' and tables
by bscruggs99 (Initiate) on Apr 13, 2006 at 05:16 UTC | |
by ikegami (Patriarch) on Apr 13, 2006 at 05:35 UTC |