1. Am I able to align two form fields vertically? if not is there another way around it for a php / html form? I tried using 2 forms side by side but then couldn't figure out how to hook them up to the php correctly
Below is a picture of what I have and what i wish to achieve as well as my form code

<form id="columnarForm" action="contact.php" method="get">
<fieldset style="border:0px solid #999999; margin-bottom:0;" >
<p>
<label for="firstName1">
First Name
<br/>
<input id="firstName1" name="firstName1" type="text" value="" />
<br />
<br />
</label>
<label for="lastName1">
Last Name
<br/>
<input id="lastName1" name="lastName1" type="text" value="" />
<br />
<br/>
</label>
<label for="emailAddress1">
Email Address
<br/>
<input id="emailAddress1" name="emailAddress1" type="text" value="" />
<br />
<br/>
</label>
<label for="subject1">
Subject
<br/>
<input id="subject1" name="subject1" type="text" value="" />
<br />
<br/>
</label>
Message
<br/>
<textarea rows="10" cols="45" id="textArea1" name="textarea1"></textarea>
</p>
<br />
<br />
<input class="submit" type="submit" value="Submit my question"/>
</fieldset>
</form>Question 2
I hooked my form fields / button upto my php file. When i fill in the form and send it works and I recieve and email but the message field info is missing. So I get say..
..
Firstname John
Last Name Johnson
Email Address Blah@blah.com
Subject Blah
..
But the message field info does not get added into the email. Not sure what I've done wrong there
php below
<?
$subject="Subject ".$_GET['subject1'];
$headers= "From: ".$_GET['emailAddress1']."\n";
$headers.='Content-type: text/html; charset=iso-8859-1';
mail("myemail@myhost.com", $subject, "
<html>
<head>
<title>Contact letter</title>
</head>
<body>
<br>
".$_GET['firstName1']."
".$_GET['lastName1']."
".$_GET['textArea1']."
</body>
</html>" , $headers);
echo ("Your message was successfully sent!");
?>
<script>
//resizeTo(300, 300)
//window.close()
</script>Thanks in advance for any answers / suggestions
Help

















