im very frustrated now. ive worked on this code for a while and turns out it doesnt work on Mozilla. im using forms and i think the problem is that the values arent passed from one file to the other.
echo"<form action=\"searchRes.php?using=crn\" method=\"post\">\n",
"<table width=\"200\" border=\"0\">\n";
for($x = 1; $x <=5; $x++)
{
echo"<tr>\n",
"<td>\n",
"***** class=\"cat\">$x</div>\n",
"</td>\n",
"<td>\n",
"<input name='crn[]' type \"text\" size=\"8\" maxlength=\"5\" value=\"CRN\" class=\"field\">",
"</td>\n",
"</tr>\n";
}
echo'</table>';
echo"<input type=\"submit\" name=\"submit\" class=\"field\" value=\"Submit\">";
echo'</form>';
is there anything wrong in here?