As I stated before: DON'T USE FRAMES! Now you see an example why.
quote:
<option value="-16"> Below 16 years
you should use < 16 instead of -16
quote:
<option value="Above 61 years"> Above 61 years
and here > 61 instead of Above 61 years
The problem was that you didn't have the name=""-attribute with some fields. I've corrected in the code:
code:
<form action="MAILTO:kryptonate@gmail.com" method="post" enctype="text/plain">
<p>
<label for="FN">First name* </label>
<input type="text" size="13" name="FirstName" id="FN" />
</p>
<p><label for="LN">Last name* </label>
<input type="text" size="13" name="LastName" id="LN"/>
</p>
<p><label for="CN">Contact number* </label><input type="number" size="10" name="ContactNumber" id="CN" />
</p>
<p><label for="EA">Email address </label><input type="text" size="35" name="E-mailAddress" value="example: kryptonate@gmail.com" id="EA" /></p>
<p></p>
<p>
Function type*
<select name="party type">
<option value="Please select" selected="selected"> Please select</option>
<option value="Birthday">Birthday</option>
<option value="Engagment">Engagment</option>
<option value="Wedding">Wedding</option>
<option value="Anniversary">Anniversary</option>
<option value="School"> School</option>
<option value="Other">Other (please State)</option>
</select>
Other <input type="text" name="other type" size="50" value="if you have selected 'other' in the drop down menu">
</p>
<p>
Age*
<select name="age">
<option value="Please select" selected="selected"> Please select</option>
<option value="-16"> Below 16 years</option>
<option value="16-21"> 16-21 years</option>
<option value="22-30"> 22-30 years</option>
<option value="31-40"> 31-40 years</option>
<option value="41-50"> 41-50 years</option>
<option value="51-60"> 51-60 years</option>
<option value="Above 61 years"> Above 61 years</option>
</select>
</p>
<p>
<label for="LO">Location* </label>
<input type="text" name="location" size="40" value="Please state location of function" id="LO" />
<label for="BO">Booked*: </label>
Yes
<input type="radio" name="Booked" value="Yes" checked="checked" id="BO" />
No
<input type="radio" name="Booked" value="No" id="BO" />
</p>
<p>Times*</p>
<label for="ST">Start </label>
<input type="text" name="time-start" size="5" value="hh:mm" id="ST" />
<label for="FI">Finish </label>
<input type="text" name="time-finish" size="5" value="hh:mm" id="FI" />
<p></p>
Other information
<br />
<textarea rows="10" cols="30" name="Textarea">
Please state music styles, perticular artists/songs, or any other information/ questions that will make your function the perfect night.
Thank you for choosing C.D's
Calum's Disco's
feel free to contact me on: 07814.94.93.32
at any time.
</textarea>
<br />
<center>
<input type="submit" value ="Submit" size="10">
</center>
</form>
I've also added labels (you can change the name of them or even remove them if you like), that makes it a bit nicer, but you should use a table for presenting it good.
Another thing as I stated before:
quote:
</head>
<center>
has to be
code:
</head>
<body>
<center>
Even if you put a body-selector in your CSS you still have to place <body> in your htmlcode.