
- /html/index.html - /include/variables.php - /include/functions.php - /config/global.ini - /html/index.php
7 lines
142 B
PHP
7 lines
142 B
PHP
<?php
|
|
function nav($nav) {
|
|
foreach($nav as $name => $url) {
|
|
echo "<div class='navitem'><a href="$url">$name</a></div>";
|
|
}
|
|
}
|
|
?>
|