is115-php/index.php

33 lines
598 B
PHP

<!DOCTYPE html>
<html lang="no">
<head>
<title>IS-115 - Webprogrammering i PHP</title>
<link rel="stylesheet" href="index.css">
<style>
body {
text-align: center;
padding-top: 10px;
}
p {
color: #777;
}
</style>
</head>
<body>
<h1>IS-115 - Webprogrammering i PHP</h1>
<?php
for($i = 1; $i <= 10; $i++){
if(file_exists('modul'.$i)){
echo "<p><a href='modul$i/'>Modul $i</a></p>";
}
else {
echo "<p>Modul $i</p>";
}
}
?>
</body>
</html>