Ive written up a homepage using all html. I made a form that calls itself.
<form action="<? echo $_SERVER["PHP_SELF"]; ?>" method="POST">
Now when I set up the top of the page to set the variables. it creates a giant gap at the top of my site. What am I doing wrong?
<?
$fname = $_POST["fname"];
$lname = $_POST["lname"];
$email = $_POST["email"];
$address = $_POST["address"];
$city = $_POST["city"];
$state = $_POST["state"];
$zipcode = $_POST["zip"];
$hphone = $_POST["hphone"];
$mphone = $_POST["mphone"];
$housing = $_POST["Own"];
$doors = $_POST["numberdoors"];
$comments = $_POST["comments"];
?>
<html>
<head>
Thanks ahead of time for you help and time.