19 lines
496 B
PHP
19 lines
496 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
$page["head"] = "<h1>Välkommen</h1>";
|
|
$page["main"] = "<p>Detta är innehållet på min sida</p>";
|
|
$page["footer"] = "<hr><p>Min sidfoot</p>";
|
|
foreach($page as $key => $value) {
|
|
echo($key . ":" . $value . "<br>");
|
|
}
|
|
include("../../footer.html");
|
|
?>
|
|
</body>
|
|
</html>
|