I'm very new to this PHP lark. I've built a site here. My problem is that the nav bars dont line up - I'm not sure if its a problem with the php file or the html files. Thanks for any advice you can give. Oh, by the way dont bother clicking on Book a Hostel
Get Insurance, or Book a Tour, they dont work. But you'll see that sometimes it does line up sometimes it doesnt even though theyre all using the same php template - why?
This is the php file source for the first page.
<html>
<head>
<meta http-equiv="Content-Language" content="en-gb">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Welcome to MyBackpack.co.uk</title>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber4">
<tr>
<td width="727" valign="bottom">
<p style="margin-top: -3; margin-bottom: -3">
<?php
include ("head.html");
?>
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="727" id="AutoNumber2" height="148">
<tr>
<td height="148" width="101" valign="top">
<?php
include ("menu.html");
?>
</td>
<td height="148" width="504" valign="top"><table border="0" cellpadding="0" cellspacing="5" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber3">
<tr>
<td width="100%" valign="top">
<?php
include ("page1body.html");
?></td>
</tr>
</table>
<p> </td>
<td height="148" width="122" valign="top"><?php
include ("adverts.html");
?></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="727" id="AutoNumber5">
<tr>
<td><?php
include ("copyright.html");
?></td>
</tr>
</table>
</body>
</html>