-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage11.php
54 lines (52 loc) · 1.7 KB
/
page11.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
44
45
46
47
48
49
50
51
52
53
54
<?php
$CUR_LVL = 10;
require_once('include.php');
require_once('user_tracking_khoofiya.php');
?>
<?php
if(isset($_POST['nick'])){
if(mysql_real_escape_string($_POST['nick'])=="errorsbunny"){
incrementLevel($_SESSION['username'], $CUR_LVL+1);
header("Location: redirect.php");
}
}
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type=text/javascript src="scripts/jquery-1.7.0.min.js"></script>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Nightvision by FCT</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="css/default.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="menu">
<ul>
<li class="current_page_item"><a href="index.php">Home</a></li>
<li><a href="list.php">Ranklist</a></li>
<li><a href="../forums">Forums</a></li>
<li><a href="rules.php">Rules</a></li>
<li><a href="about.php">About Us</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</div>
<div id="page" >
<div style="/*display: block;*/">
You are making going to make <div id="bum" style="display:inline"> someone </div> very angry!!
</div>
<img id="1" src="images/What-are-you-looking-at.jpg" usemap="#assmap" style="display:none"/>
<img id="2" src="images/scroll-stock.jpg" style="position: relative; bottom: 10px; right: 400px;" />
<map name="assmap">
<area shape="rect" coords="87,275,122,305" alt="Sun" class="mapping"/>
</map>
<br />
<!-- We don't trust CDNs -->
<div>You need to calm him down by using a special nickname only his mummy knows.<br />
<form method="post" action="page11.php">
<input type="password" name="nick"><input type="submit" value="submit">
</form>
</div>
</div>
</body>
</html>