Here is what the form from file form2.php looks like without any formatting. Change it to look however you want.
The form on this page is for viewing only and has been disabled.
Here is the html code for the above form:
<form id="form" method="post" action="formmailer.php" enctype="multipart/form-data">
<p>Your Name<br /><input type="text" name="Name" value=""/></p>
<p>Your Email<br /><input type="text" name="Email" value="" /></p>
<p>Regarding<br />
<select name="Regarding">
<option value="This cool script">This cool script</option>
<option value="Some other cool script">Some other cool script</option>
</select>
</p>
<p>Where are you gonna use this script?<br />
<input type="checkbox" name="Where_to_use[]" value="Home" /> At Home<br />
<input type="checkbox" name="Where_to_use[]" value="School" /> At School<br />
<input type="checkbox" name="Where_to_use[]" value="In the car" /> In the car
</p>
<p>How old are you?<br />
<input type="radio" name="Age" value="Under 18 <" /> Less than 18<br />
<input type="radio" name="Age" value="19-25" /> 19-25<br />
<input type="radio" name="Age" value="Over 35" /> Over 25
</p>
<p><input type="file" name="attachment" /></p>
<p><input type="file" name="attachment1" /></p>
<p>Comments and/or Questions<br /><textarea name="Comments" rows="5" cols="40"></textarea></p>
<p>
<input type="submit" name="submit" value="Submit" />
<input type="reset" name="Reset" value="Clear Form" />
<input type="hidden" name="config" value="0" />
</p>
</form>