Advertisement
Guest User

index.php

a guest
Mar 13th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php include_once 'config.php'; ?>
  2.  
  3. <ul>
  4.     <?php
  5.         foreach($navlinks as $navlink => $navlink_value) {
  6.             echo "<li><a href=\"" . $navlink_value . "\">" . $navlink . "</a></li>";
  7.         }
  8.     ?>
  9. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement