richcleverley
MIS
Hi, I hope this is in the right place.
I am developing a site that has a form to submit details. On the form, I have a php if statement that passes different things through the form to call later funtionality. This in itself isn't a problem.
What is a problem though is how the form behaves. If I use IE as my browser everything works fine, but in firefox it refuses to link from the form to the new page. I have looked through the html that is generated by firefox (from a php script - shouldn't affect things) and can't see any reason for it. It is identical html as in IE.
Here is the code (very rough and ready I know but I am still in development).
As you can see, the form has the target url in it but when I look at the form info page info tool in firefox it has no name and no url to link to. Can anyone see what's wrong??
Oh, and by the way, the values are dynamically produced.
Thanks
Richard
I am developing a site that has a form to submit details. On the form, I have a php if statement that passes different things through the form to call later funtionality. This in itself isn't a problem.
What is a problem though is how the form behaves. If I use IE as my browser everything works fine, but in firefox it refuses to link from the form to the new page. I have looked through the html that is generated by firefox (from a php script - shouldn't affect things) and can't see any reason for it. It is identical html as in IE.
Here is the code (very rough and ready I know but I am still in development).
Code:
<form name="form1" method="post" action="booking.php">
<input name="choiceofapp" type="hidden" value="3,7,12,13">
<input name="people" type="hidden" value="9">
<input name="service" type="hidden" value="2">
<input name="completeprice" type="hidden" value="3100">
<input name="fromdate" type="hidden" value="12/12/2006">
<input name="todate" type="hidden" value="24/12/2006">
<table width="123">
<tr>
<td width="115">
<label>
<input type="radio" name="RadioGroup1" value="1">
Book Now</label></td>
</tr>
<label>
<input type="radio" name="RadioGroup1" value="2">
Create Option</label></td>
</table>
<input type="submit" name="Submit" value="Submit">
</form>
As you can see, the form has the target url in it but when I look at the form info page info tool in firefox it has no name and no url to link to. Can anyone see what's wrong??
Oh, and by the way, the values are dynamically produced.
Thanks
Richard