Thanks for this forum. Hopefully I am just missing something very obvious. I have a menu that I want to put on each page, called menu.php. Both menu.php and test.php are in the root directory. The page test.php diplays correctly, but no menu appears. Here is the code on menu.php:
<p style="margin-top:20px;"><a href="index.html" id="home_tab">Home</a></p>
<p><a href="about.html" id="about_tab">About Us</a></p>
<p><a href="products.html" id="products_tab">Products</a></p>
<p><a href="browse.php" id="order_tab">Online Catalog</a></p>
<p><a href="techniques.html" id="techniques_tab">Do It Yourself</a></p>
<p><a href="conversions.html" id="conversions_tab">Conversions</a></p>
<p><a href="faqs.html" id="questions_tab">Questions</a></p>
<p><a href="contact.html" id="contact_tab">Contact Us</a></p>
<p><a href="links.html" id="links_tab">Links</a></p>
This the the code on the page I am calling it into, test.php:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Test</title>
<link rel="stylesheet" type="text/css" href="testpage2.css" />
</head>
<body>
<div id="header"></div>
<div id="sidebar">
<?php include 'menu.php'; ?>
</div>
<div id="main">
<div class="content">
<p>This is a test.</p>
</div></div>
<div id="footer">
</div>
</body>
</html>
Thanks.
Kari