I have a number of multi-page forms written in php3 that work fine in IE4/5 and Netscape 4.x, but die in Netscape 6. The values are not being passed. Does anyone know of any documentation that might help me remedy this problem? Code samples follow.
Thanks,
Julian
These die in Net 6.
<input type = "hidden" name ="pic" value ="<? echo"$pic_select";?>">
text boxes are generated, but the values are not passed to the next script:
$count = 0;
for($count; $recip_number >= $count; $count++)
{
$num = $count + 1;
echo"
<tr>
<td width=\"69\"><font face=\"Arial\" size=\"2\" color=\"#000000\">Recipient $num:</font></td>
<td width=\"166\"><font face=\"Arial\" size=\"2\" color=\"#000000\"><input type=\"text\" name=\"recip[$count]\" size=\"20\"></font></td>
<td width=\"227\"><font face=\"Arial\" size=\"2\" color=\"#000000\"><input type=\"text\" name=\"recip_mail[$count]\" size=\"30\"></font></td>
</tr>";
}