Skip to content

Instantly share code, notes, and snippets.

@jaeschrich
Last active December 16, 2015 11:19
Show Gist options
  • Save jaeschrich/5426923 to your computer and use it in GitHub Desktop.
Save jaeschrich/5426923 to your computer and use it in GitHub Desktop.
extensible PHP menu component
<ul class="nav nav-pills">
<?php
/*
$curPage = "current page";
include "menu.php";
*/
$links = array(
array('href'=>'/index.php', 'name'=>'Home'),
// add some more
);
foreach($links as $link){
echo '<li ';
if ($curPage == $link['name']){
echo 'class="active"';
}
echo '><a href="' . $link['href'] . '">' . $link['name'] . '</a></li>';
}
?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment