-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
119 lines (97 loc) · 3.42 KB
/
index.php
File metadata and controls
119 lines (97 loc) · 3.42 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php
// Comment these lines to hide errors
error_reporting(E_ALL);
ini_set('display_errors', 1);
require 'includes/config.php';
//require 'includes/functions.php';
//init();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home</title>
</head>
<body bgcolor="#ccccb3" style="font-family: monospace;">
<table id="header" border="0" width="100%"
cellpadding="0" cellspacing="0" bgcolor="#cca300">
<tr>
<td>
<table border="0" cellpadding="15"
cellspacing="0" width="90%" align="center">
<tr>
<td>
</td>
<td>
<font face="Monaco" size="6">
<b>LAMP</b>
</font>
</td>
<td width="15%">
</td>
<td>
<a href="index.php" style="text-decoration:none">
<font face="Verdana" size="5" color=black>
Home
</font>
</a>
</td>
<td>
|
</td>
<td>
<a href="login.php" style="text-decoration:none">
<font face="Verdana" size="5" color=black>
LogIn
</font>
</a>
</td>
<td>
|
</td>
<td>
<a href="contact.php" style="text-decoration:none">
<font face="Verdana" size="5" color=black>
Contact
</font>
</a>
</td>
<td>
|
</td>
<td>
<a href="https://www.casbay.com/blog/tips-sharing/lamp-linux-apache-mysql-and-php-stack" style="text-decoration:none">
<font face="Verdana" size="5" color=black>
Public Blog
</font>
</a>
</td>
<td>
|
</td>
<td>
<a href="https://www.bennett.edu.in/" style="text-decoration:none">
<font face="Verdana" size="5" color=black>
Bennett page
</font>
</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
<p><h1>Hello,</h1><br>
<h2>
My ip address (name) is D.E.V G.U.P.T.A.<br>
I am an anti-known developer.<br>
</h2>
<br>
<h4>
Dev Gupta<br>
E20CSE222
</h4>
</p>
</body>
</html>