When I run my website I have random bits of php showing, and the background doesn't appear. Here is what bit is showing
"); } ?>
and here is my code
<!DOCTYPE html>
<head>
<title>Website Name</title>
<meta http-equiv="Content-Type" content="text/html; charSet=UTF-8">
<link rel="stylesheet" href="styles.css" media="screen" />
</head>
<body>
<div class="wrapper">
<center>
<div class="header"></div>
<div class="navbar">
<div class="button"><a href="index.php">Főoldal</a></div>
<div class="button"><a href="products.php">Termékek</a></div>
<div class="button"><a href="about.php">Rólunk</a></div>
<div class="button"><a href="contact.php">Elérhetőség</a></div>
</div>
<div class="textbody">
<?php
if ($_GET['page'] == "fa"){
echo ("<h1>Fa Áruk</h1><hr /><br />");
}
?>
</div>
</center>
</div>
</body>
</html>
also the header tag isn't as large as it should be.
Thanks for any help.