Skip to content

Instantly share code, notes, and snippets.

@imamo
Created August 11, 2011 07:42
Show Gist options
  • Save imamo/1139113 to your computer and use it in GitHub Desktop.
Save imamo/1139113 to your computer and use it in GitHub Desktop.
Menu in php
<?php
$pages["index.php"] = "Home";
$pages["about.php"] = "About Us";
$pages["products.php"] = "Products";
$pages["price-list.php"] = "Price List";
$pages["contact.php"] = "Contact";
$active_page = basename($_SERVER["REQUEST_URI"]);
foreach($pages as $page => $page_title)
{
$suffix = ($page == $active_page) ? "active" : "none";
$nav.= "<li><a href='".$page."' class='".$suffix."'>$page_title</a></li>";
}
print $nav;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment