forked from RobvanEmbden/Getting_Started_with_PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
41 lines (33 loc) · 911 Bytes
/
index.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
<!DOCTYPE>
<html>
<head>
<title>Rob van Embden PHP</title>
</head>
<body>
<h1> Rob van Embden PHP<h1>
<p style="font-size: medium; font-weight: 200;">
The SHA256 hash of "Rob van Embden" is <?php echo hash('sha256', 'Rob van Embden');
?>
</p>
<p>
<pre style="font-size: medium; font-weight: 200;">ASCII Art:
*********
** **
** **
*** ***
** **
** **
** **
</pre>
</p>
<p style="font-size: medium; font-weight: 200;">
<a href="check.php">
Click here to check the error setting
</a>
<br>
<a href="fail.php">
Click here to cause a traceback
</a>
</p>
</body>
</html>