Hi everyone, I was wondering if somebody could help me,
I built a form in dreamweaver for people to join my mailing list, I have a windows hosting plan with lunarpages and I don't know how to make my form work, I am not really good with scripts and code, I am more familiar with the design side of dreamweaver, but I am learning and I am slowly getting there (I figured out last week how to set up and personnalize my oscommerce e-shop and I am really happy about it!)
right now when I clic on the submit button of my form I get this message:
Method Not Allowed
The HTTP verb used to access this page is not allowed.
So here is the code of my form and if anyone can tell me what to change in it I would thank him (or her) a million:
<form id="form1" name="form1" method="post" action="">
<table width="640" height="263" border="0">
<tr>
<td width="137"><div align="right" class="style53"><strong>*email address:</strong></div></td>
<td colspan="3"><label>
<input name="email_field" type="text" class="textfield" id="email_field" size="25" maxlength="50" />
</label></td>
</tr>
<tr>
<td><div align="right" class="style53"><strong>*gender:</strong></div></td>
<td width="173" class="style53"><label>
<input name="radiobutton" type="radio" value="radiobutton" />
male
<input name="radiobutton" type="radio" value="radiobutton" />
female </label></td>
<td width="133"><div align="right" class="style53"><strong>year of birth: </strong></div></td>
<td width="179"><label>
<select name="Year" class="textfield">
<option selected="selected">Year</option>
</label></td>
</tr>
<tr>
<td class="style53"><div align="right"><strong>*first name: </strong></div></td>
<td><label>
<input name="firstname" type="text" class="textfield" id="firstname" size="25" maxlength="50" />
</label></td>
<td class="style53"><div align="right"><strong>last name: </strong></div></td>
<td><label>
<input name="lastname" type="text" class="textfield" id="lastname" size="25" maxlength="50" />
</label></td>
</tr>
<tr>
<td class="style53"><div align="right"><strong>city:</strong></div></td>
<td><label>
<input name="city" type="text" class="textfield" id="city" size="25" maxlength="50" />
</label></td>
<td class="style53"><div align="right"><strong>*country:</strong></div></td>
<td><label>
<select name="country" class="textfield">
<option selected="selected">choose a country</option>
</label></td>
</tr>
<tr>
<td><div align="right" class="style53"><strong>comments:</strong></div></td>
<td><label>
<textarea name="comments" cols="20" rows="4" wrap="physical" class="textfield" id="comments"></textarea>
</label></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="4"><div align="center">
<label>
<input name="join" type="submit" class="join_button" id="join" onclick="MM_goToURL('parent','Copy of index.html');
return document.MM_returnValue" value="join" />
</label>
</div></td>
</tr>
</table>
</form>
So if you know what to do PLease Help me!!!
