That helps a little bit but I am still a little lost since my PHP isn't embeded with my HTML. I Have already have the echo statement wrote in with the rest of my error checking echos.
/* Do some error checking on the form posted fields */
if((!$first_name) || (!$last_name) || (!$email_address) || (!$city) || (!$zipcode) || (!$checkbox) || (!$cords) || (!$username)){
echo '<h1>You did not submit the following required information! </h1><br />';
if(!$first_name){
echo "<font class='errortext'>*First Name* is a required field. Please enter it below. <br />";
}
if(!$last_name){
echo "*Last Name* is a required field. Please enter it below.<br />";
}
if(!$email_address){
echo "*Email Address* is a required field. Please enter it below.<br />";
}
if(!$username){
echo "*Desired Username* is a required field. Please enter it below.<br />";
}
if(!$city){
echo "*City* is a required field. Please enter it below.<br />";
}
if(!$zipcode){
echo "*Zipcode* is a required field. Please enter it below.<br />";
}
if(!$cords){
echo "*You must set your Home Coordinates*.<br />";
}
if(!$checkbox){
echo "*You must accept the Terms & Conditions*.<br />";
}
?>
Here's the form that is on the page with the registeration
<td width="599" height="30">
<font class="contenttext"><INPUT TYPE="checkbox" NAME="terms" VALUE="Y"> Yes, I have read and understand the <a href='?page=development' style='text-decoration:underline'>Terms & Conditions.</td>
So in my php code above would I just need to replace checkbox with terms? I am just a little lost on how to plug this in with what I already have as I want to keep the same layout as I have to make things easy to read etc.
-Thanks