I'm creating a javascript form (for a games company) to take "pre-orders" from past buyers and potential buyers. When the form is filled out and the Submit button is pressed, an e-mail of this information is supposed to be sent to a certain e-mail recipient, but this isn't happening. Instead, it returns a 404 error. Can someone please explain why?
This is the test page with the form:
http://www.jeffs-icons.net/sv/formTest-01.html
This is the code (with some of the input fields removed:
<P ALIGN=center>
<form method=POST action="/cgi-bin/contact">
<input type=hidden name="recipient" value="russell9387@runbox.com">
<input type=hidden name="env_report" value="REMOTE_HOST,HTTP_USER_AGENT">
<input type=hidden name="bgcolor" value="#ffffff">
<input type=hidden name="text_color" value="#000000">
<input type=hidden name="return_link_url" value="http://www.jeffs-icons.net">
<input type=hidden name="return_link_title" value="Back to My Page">
<FONT COLOR="#FFFFFF">
<table border="0" cellpadding="0" cellspacing="10" width="520">
<td>Organization Name:</td><td><input name="Organization" type="text" rows=1 size="37"></td>
</tr>
<tr>
<td>Contact Person Name & Title:</td>
<td><input name="Contact" type="text" rows=1 size="37"></td>
</tr>
<tr>
<td>Address:</td>
<td><input name="Address" type="text" rows=1 size="37"></td>
</tr>
<tr>
<td>Country:</td>
<td><input name="Country" type="text" rows=1 size="16"></td>
</tr>
<tr>
<td>Number of units
you expect to order:</td>
<td><input name="Units" type="text" rows=1 size="16"></td>
</tr>
</table>
<center><input type="Submit" value="Submit"><input type="Reset">
</form>