hey there, i have a form with 2 hidden fields... i can only ever access one of the fields after i hit the form button .... is there a maximum number of hidden fields your allowed to have per form?
here is the code:
echo "<form method='post' action='search_results.php'>";
// set redirect flag to yes, so that the search_results doesnt mine for players again, but rather just uses
// the player name passed through this form
echo "<input type='hidden' name='redirect' value='yes'>";
echo "<input type='hidden' name='year' value='$season'>";
for($i = 0; $i <= $array_count; $i++)
{
// display array element as long as its not empty
if ($reduced_names[$i] != "")
{
$player_name = $reduced_names[$i];
echo "<tr><td><div align='center'><input type='radio' name='criteria' width='25%' value='$player_name'>
$player_name</div></td></tr>";
}
}
echo "<tr><td><div align='center'><input type='submit' name='select' value='Select player'></div></td></tr>";