Show sourcecode
The following files exists in this folder. Click to view.
webbserverprogrammering/exercises/inkluderaFiler/incl2/
index.php
ovandel.php
slump.php
style.css
tre.php
två.php
underdel.php
ovandel.php
24 lines UTF-8 Windows (CRLF)
<?php
error_reporting(-1); // Report all type of errors
ini_set('display_errors', 1); // Display all errors
ini_set('output_buffering', 0); // Do not buffer outputs, write directly
?>
<?php include("slump.php"); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Min sida</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<header><h1>Välkommen <?php echo slump(); ?></h1></header>
<nav>
<ul>
<li><a href="index">Ett</a></li>
<li><a href="två">Två</a></li>
<li><a href="tre">Tre</a></li>
</ul>
</nav>