Hi everyone,
I'm trying to make a simple navbar that is included in all the pages of my site. On some servers this code works fine, on others it brings up nothing. Unfortunately the site is on a server that brings up nothing.
Somehow the php include function isn't working consistently, does anyone know why? Below is the text for the two pages. Thanks for checking this out.
This first file is named NavbarInclude.php.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title>NavbarInclude.php</title>
</head>
<body>
<table style="text-align: left; width: 100%;" border="0" cellpadding="0"
cellspacing="0">
<tbody>
<tr>
<td> <?php include 'NavbarNow.php'; ?> </td>
</tr>
</tbody>
</table>
<br>
</body>
</html>
The second file is named: NavbarNow.php and here is the text-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<style type="text/css">
p.ex1
{
font:10px tahoma,sans-serif;
}
ul
{
list-style-type:none;
margin:0;
padding:0;
padding-top:6px;
padding-bottom:6px;
}
li
{
display:inline;
}
a:link,a:visited
{
font:12px tahoma,sans-serif;
font-weight:bold;
color:#FFFFFF;
background-color:#660000;
text-align:center;
padding:4px;
text-font: tahoma;
text-decoration:none;
text-transform:uppercase;
}
a:hover,a:active
{
background-color:#003366;
}
</style>
<title>Navbar</title>
</head>
<body>
<p class="ex1">
</p>
<ul>
<br>
<br>
<br>
<li style="font-family: Tahoma;">
<a href="Index.html#home">Home</a></li>
<li style="font-family: Tahoma;">
<a href="heaters.html">Heaters</a></li>
<li style="font-family: Tahoma;">
<a href="sylvaniaairheaters.htm">Sylvania</a></li>
<li style="font-family: Tahoma;">
<a href="nexthermal.html">Nexthermal</a></li>
<li style="font-family: Tahoma;">
<a href="BriskHeat-BH-Thermal.htm">Briskheat</a></li>
<li style="font-family: Tahoma;">
<a href="HEATREX.html">Heatrex</a></li>
<li style="font-family: Tahoma;">
<a href="eastcoastsensors.html">East
Coast Sensors</a></li>
<li style="font-family: Tahoma;">
<a href="AVATAR.htm">Avatar</a></li>
<li style="font-family: Tahoma;">
<a href="Gneuss-Melt-Pressure.html">Gnuess</a></li>
<li style="font-family: Tahoma;">
<a href="takk-static-controls.htm">Takk</a><span style="font-family: Tahoma;"></span></li>
<li style="font-family: Tahoma;">
<a href="takk-static-controls.htm">Meltpro</a><span style="font-family: Tahoma;"></span></li>
<li style="font-family: Tahoma;">
<a href="ITS-Ovens.htm">Its</a></li>
<li style="font-family: Tahoma;">
<a href="Hilma-Carr-Lane-Roemheld.htm">Hilma</a>
</li>
<br>
<li></li>
<li></li>
</ul>
<p></p>
</body></html>