e59-website/include/functions.php
Jan BELLON c1782eac5a Update 5 files
- /html/index.html
- /include/variables.php
- /include/functions.php
- /config/global.ini
- /html/index.php
2024-03-06 17:24:39 +00:00

7 lines
142 B
PHP

<?php
function nav($nav) {
foreach($nav as $name => $url) {
echo "<div class='navitem'><a href="$url">$name</a></div>";
}
}
?>