#!/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>";
In reply to cgi problem returns by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |