I have these rows displayed in an html table within a form:
print "<TD align='left'><INPUT name='tomvote' type=checkbox></TD>";
print "<TD align='left'><INPUT name='code' type=text</TD>";
print "<TD align='left'><INPUT type='hidden' name='rpt_id' value='" .$row["rpt_id"]."'></TD>";
When the user hits the submit button it loads a new page:
print "tomvote: " .$POST[tomvote]. "<BR>" ;
print "code: " .$POST
. "<BR>" ;
print "rpt_id: " .$_POST[rpt_id]. "<BR>" ;
The problem is that I can display the values of the checkbox and the hidden input, but I can't get the text input to display.
Any ideas out there?
Thanks in advance.
mosizlak