Skip to content

Instantly share code, notes, and snippets.

@eversthomas
Created August 22, 2019 13:40
Show Gist options
  • Save eversthomas/287d4310de646d89d66936b5024566ec to your computer and use it in GitHub Desktop.
Save eversthomas/287d4310de646d89d66936b5024566ec to your computer and use it in GitHub Desktop.
<?php
// example code
$main_nav = [
"index.php" => "home",
"service.php" => "service",
"uber.php" => "uber",
"contact.php" => "contact",
"legal.php" => "legal"
];
foreach($main_nav AS $link => $name) {
// echo "$name $link <br>";
echo "<ul><li><a href=\"$link\">$name</a></li></ul>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment