Show sourcecode
The following files exists in this folder. Click to view.
comments.php
dbconnection.php
exercises/
exercises.php
img/
incl/
index-no-include.php
index.php
source.php
style/
viewsource.php
index-no-include.php
88 lines UTF-8 Windows (CRLF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
// show all error reporting
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
// time page generation, display in footer.
$pageTimeGeneration = microtime(true);
// useful constants
// useful functions
$title = "Webbserv1 :Start";
$pageId = "start";
$pageStyle = '
figure {
border-radius: 10px;
border-color:#333;
box-shadow: 10px 10px 5px #888;
}
';
?>
<!doctype html>
<html lang="sv">
<head>
<meta charset="utf-8">
<title><?php echo $title; ?></title>
<link rel="stylesheet" href="style/stylesheet.css" title="General stylesheet">
<link rel="shortcut icon" href="img/favicon_pb.png">
<!-- Each page can set $pageStyle to create additional style -->
<?php if(isset($pageStyle)) { ?>
<style>
<?php echo $pageStyle; ?>
</style>
<?php } ?>
</head>
<!-- The body id helps with highlighting current menu choice -->
<body<?php if(isset($pageId)) echo " id='$pageId' "; ?>>
<!-- header -->
<header id="top">
<span class="logga">Webbserverprogrammering 1</span>
<!-- navigation menu -->
<nav class="navmenu">
<a id="start-" href="index.php">Start</a>
<a id="comments-" href="comments.php">Reflektioner</a>
<a id="exercises-" href="exercises.php">Övningar</a>
<a id="viewsource-" href="viewsource.php">Källkod</a>
</nav>
</header>
<!-- sidans huvudinnehåll -->
<div id="content">
<article class="justify border">
<h1>Start</h1>
<figure class="right top">
<img src="" alt="David">
<figcaption>
<p>Bild på mig</p>
</figcaption>
</figure>
<p>Hej och välkommen till David's samlingssida i kursen
webbserverprogrammering 1.
</p>
</article>
</div>
<!-- footer -->
<footer id="bottom">
<p>Verktyg:
<a href="http://validator.w3.org/check/referer">HTML5</a>
<a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a>
<a href="http://validator.w3.org/unicorn/check?ucn_uri=referer&ucn_task=conformance">Unicorn</a>
<a href="viewsource.php">Källkod</a>
</p>
<?php if(isset($pageTimeGeneration)) { ?>
<p>Sidan skapades på <?php echo round(microtime(true)-$pageTimeGeneration, 5); ?> sekunder</p>
<?php } ?>
</footer>
</body>
</html>