Using the following PHP script to select the page Im currently on.
each page has the variable $page== 'pagename'
This script works fine but sometimes the buttons need to be rolled over twice in order for the dropdown menu to appear.
Is there a better way?
<div id="navigation">
<ul id="nav">
<!-- If the button HOME is selected then make the HOME Button Active -->
<?php if ($page == 'home') { ?><li><a href="index.php" a id="current">HOME</a></li>
<?php } else { ?><li><a href="index.php">HOME</a><?php } ?>
<!-- If the button ABOUT US is selected then make the ABOUT US Button Active -->
<?php if ($page == 'about-us') { ?><li><a href="about-us.php" a id="current">ABOUT US</a>
</li>
<?php } else { ?><li><a href="about-us.php">ABOUT US</a>
</li>
<?php } ?>
<!-- If the page projects is selected then make the Projects Button Active -->
<?php if ($page == 'projects') { ?><li><a href="projects.php" a id="current">PROJECTS</a>
<ul>
<li><a href="project-01.php">Project 1</a></li>
<li><a href="#">Project 2</a></li>
<li><a href="#">Project 3</a></li>
<li><a href="#">Project 4</a></li>
</ul>
</li>
<?php } else { ?><li><a href="projects.php">PROJECTS</a>
<ul>
<li><a href="project-01.php">Project 1</a></li>
<li><a href="#">Project 2</a></li>
<li><a href="#">Project 3</a></li>
<li><a href="#">Project 4</a></li>
</ul>
</li>
<?php } ?>
<!-- If the page Capabilities is selected then make the Capabilities Button Active -->
<?php if ($page == 'capabilities') { ?><li><a href="capabilities.php" a id="current">CAPABILITIES</a>
<ul>
<li><a href="capabilities-civil-works.php">Civil Works</a></li>
<li><a href="capabilities-commercial-construction.php">Commercial Construction</a></li>
<li><a href="capabilities-controlled-waste-management.php">Controlled Waste Management</a></li>
<li><a href="capabilities-plant-hire.php">Plant Hire</a></li>
</ul>
</li>
<?php } else { ?><li><a href="capabilities.php">CAPABILITIES</a>
<ul>
<li><a href="capabilities-civil-works.php">Civil Works</a></li>
<li><a href="capabilities-commercial-construction.php">Commercial Construction</a></li>
<li><a href="capabilities-controlled-waste-management.php">Controlled Waste Management</a></li>
<li><a href="capabilities-plant-hire.php">Plant Hire</a></li>
</ul>
</li>
<?php } ?>
<!-- If the page Careers is selected then make the Careers Button Active -->
<?php if ($page == 'careers') { ?><li><a href="careers.php" a id="current">CAREERS</a></li>
<?php } else { ?><li><a href="careers.php">CAREERS</a>
</li>
<?php } ?>
<!-- If the page Contact Us is selected then make the Contact Us Button Active -->
<?php if ($page == 'contactus') { ?><li><a href="contact-us.php" a id="current">CONTACT US</a></li>
<?php } else { ?><li><a href="contact-us.php">CONTACT US</a>
</li>
<?php } ?>
</ul>
<!-- Search Form -->
<div class="search-form">
<form method="get" action="#">
<input type="text" class="search-text-box" />
</form>
</div>
</div>
<div class="clear"></div>
</div>
<!-- Navigation / End -->