[thelist] Send hidden data from a form

Anthony Baratta anthony at baratta.com
Tue Dec 30 16:23:23 CST 2008


There is one other issue you need to take care of in your coding style 
that will cause problems if you don't change:

e.g. print "<option value=$team_name>";

You are not surrounding your values with quotes/apostrophes. You should 
be doing something like this:

      print "<option value='$team_name'>";
or
      print "<option value=\"$team_name\">";

That was the real reason you were seeing issues with Red Sox only 
showing Red on the browser submit.



--
Anthony Baratta

"It is only the warlike power of a civilized people that can give peace 
to the world." ---Theodore Roosevelt



More information about the thelist mailing list