Hello from a complete newbie to PHP5.
I created a header file (html) which contains navigation links.
In another page (index.php) I put an include in the body of the page.
The index page has a link to a css file which styles the navigation links in the include file.
When I view the page, the part where the include is made contains garbled characters (well mostly diamond chars with ? inside).
If I replace the header file with a simplified one with only one div block it displays fine. So I suspect that the include file does not like the style sheet references?!?
I would appreciate it if someone could shed some light on this.
Many thanks,
KS
<div id="header">
<div id="menu">
<ul id="nav-one" class="nav">
<li>
<a href="#">About Us</a>
<ul>
<li><a href="about-wcjja.html">About WCJJA</a></li>
<li><a href="about-wing-chun.html">Wing Chun</a></li>
<li><a href="history-of-wing-chun.html">History</a></li>
<li><a href="new.html">What's New</a></li>
<li><a href="wing-chun-links.html">Links</a></li>
</ul>
</li>
<li>
<a href="#">Instructors</a>
<ul>
<li><a href="marvon-wilkinson.html">Marvon Wilkinson</a></li>
<li><a href="lineage.html">Lineage</a></li>
</ul>
</li>
<li>
<a href="#">Classes</a>
<ul>
<li><a href="wing-chun-classes.html">Wing Chun</a></li>
<li><a href="womens-self-defense.html">Women's Self Defense</a></li>
<li><a href="workshops.html">Seminars & Workshops</a></li>
</ul>
</li>
<li>
<a href="#item2">Media</a>
<ul>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="videos.html">Video</a></li>
<li><a href="more-wc.html">More Wing Chun</a></li>
</ul>
</li>
<li>
<a href="#">Contact Us</a>
<ul>
<li><a href="email-us.html">Email Us</a></li>
<li><a href="schools.html">School Locations</a></li>
<li><a href="bookmark-us.html">Bookmark us</a></li>
<li><a href="copyright.html">Copyright</a></li>
</ul>
</li>
</ul>
</div>
</div>