I have a php form which works fine except it cuts off the bottom of the table. I'm using the freebee version of NavStudio which calls a window when it doesn't detect a link to navstudio.com.
it's not live so you can see what I mean:http://www.kryptonfloors.com/epoxy-floors-quote.php
Here's the section that displays the "Thanks" once the form is submitted.
$hurrah = mail($toemail,"$subject","$message","From: $Name <$Email>");
if($hurrah) {
if($autoresponse == "yes") {
$autosubject = stripslashes($autosubject);
$autocontact = stripslashes ($Name);
$automessage = stripslashes($automessage);
mail($Email,"$autosubject", "$autocontact","$automessage","From: $recipientname <$recipientemail>");
}
echo "$thanks";
}
}
}
else {