-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadduser.php
39 lines (39 loc) · 974 Bytes
/
adduser.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<title>PHP-GmbH Home</title>
</head>
<body>
<header>
<img src="img/banner.gif">
</header>
<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>
<h1>Users</h1>
<p>[<a href="registr.php">User registrieren</a>]</p>
<br>
<p>
<?php
readfile('user.txt');
?>
</p>
<br>
</main>
<footer>
<img src="img/jakarta-banner.gif">
</footer>
</body>
</html>