Hi guys, i want to find something out that will help me out a great deal.
I am including a menu from a separate .php file using
<?php include("menu.php"); ?>
but something that i really need to find out before i can continue with this.
When I'm at eg 'Home' then the 'Home' button should be highlighted. is there a way that with this php include, i can have a script that grabs something within each page, eg a title or a set variable or what ever, and if the content that it grabbed corresponds with the certain button, then it will highlight that button?
here is my menu's html code to show how its being higlited (NOTE: THE GALLERY IS HIGHLIGHTED AND NOT HOME IN THIS CODE)
<div class="nav">
<div class="l"></div>
<div class="r"></div>
<ul class="menu">
<!---------------------HOME-------------------->
<li style="margin-left:5px">
<a href="index.php"><span class="l"></span><span class="r"></span>
<span class="t">Home</span></a>
</li>
<li>
<a href="gallery.php" class=" active"><span class="l"></span><span class="r"></span><span class="t">
Gallery</span></a>
<ul>
<li><a href="gal_catering.php">Catering</a></li>
<li><a href="gal_cakes.php">Cakes</a></li>
<li><a href="gal_confectionery.php">Confectionery</a>
<ul>
<li><a href="gal_cakes.php">Cookies</a></li>
<li><a href="gal_baskets.php">Baskets</a></li>
</ul>
</li>
</ul>
</li>
<!------------------------------------------------>
<li>
<a href="quote.php"><span class="l"></span><span class="r"></span>
<span class="t">Quote</span></a>
<ul>
<li><a href="quote_catering.php">Catering</a></li>
<li><a href="quote_confectionery.php">Confectionery</a></li>
</ul>
</li>
<!------------------------------------------------>
<li>
<a href="blog/"><span class="l"></span><span class="r"></span>
<span class="t">Blog</span></a></li>
<!------------------------------------------------>
<li>
<a href="about.php"><span class="l"></span><span class="r"></span>
<span class="t">About</span></a></li>
<!------------------------------------------------>
<li>
<a href="contact.php"><span class="l"></span><span class="r"></span>
<span class="t">Contact</span></a></li>
</ul>
</div>