hey guys,
currently using the following php code (header-nav.php) on my page to mark which page has been selected and is active by calling the variable set on that page ($page)
I’m having difficulties setting this up for my sub links, rather than create 2 versions of every sublink with inline php, is there a better way of achieving this?
<!-- Navigation -->
<div class="sixteen columns">
<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-construction.php">Construction & Building Maintenance.</a></li>
<li><a href="capabilities-civil-works.php">Civil Works</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-construction.php">Construction & Building Maintenance.</a></li>
<li><a href="capabilities-civil-works.php">Civil Works</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 -->
<!DOCTYPE html>
<html>
<head>
<?php $page = 'home'; ?>
</head>
<body>
<?php include 'header-nav.php'; ?>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>