Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/local/bin/perl -w use CGI; use DBI; my @teamOption= param ("teamOption"); print "Content-type: text/html\n\n"; print "<html>"; print "<body TEXT='#000000' BGCOLOR='#FFFFFF' LINK='#0000EE' VLINK='#5 +51A8B'ALINK='#FF0000'>\n"; # Print out a table of teams chosen print "<table border=1> \n"; print "<tr> \n"; print "<th> List of teams chosen </th> \n"; print "<tr> \n"; for $team (@teamOption){ # Print row print "<tr> \n"; print "<td> $team </td> \n"; print "</tr> \n"; } print "</table>"; print "</body>"; print "</html>";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: cgi problem returns
by Masem (Monsignor) on Mar 30, 2001 at 01:05 UTC | |
|
Re: cgi problem returns
by arturo (Vicar) on Mar 30, 2001 at 01:51 UTC | |
|
Re: cgi problem returns
by busunsl (Vicar) on Mar 30, 2001 at 01:07 UTC |