-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguestbook_read.php
43 lines (43 loc) · 1.1 KB
/
guestbook_read.php
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<title>PHP-GmbH Home</title>
</head>
<body>
<!-- Firmen Bild -->
<header>
<img src="img/banner.gif">
</header>
<!-- Navigation -->
<nav>
<img src="img/tomcat.gif">
<a href="index.html">
<img src="img/home.gif">
</a>
<a href="#">
<img src="img/guestbook.gif">
</a>
<a href="registr.php">
<img src="img/witze.gif">
</a>
</nav>
<!-- Main der Seite -->
<main>
<h1>Gästebuch</h1>
<p>[<a href="guestbook.php">Gästebuch schreiben</a>]</p>
<br>
<p>
<!-- Gäste Buch wird ausgelesen -->
<?php
readfile('guestbook.txt');
?>
</p>
<br>
</main>
<footer>
<img src="img/jakarta-banner.gif">
</footer>
</body>
</html>