[go: up one dir, main page]

Menu

[r120]: / html_gui / error_page.php  Maximize  Restore  History

Download this file

106 lines (99 with data), 3.0 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
<?php
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>YAMT</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="css/dropdown/dropdown.css" media="all" rel="stylesheet" type="text/css" />
<link href="css/dropdown/themes/nvidia.com/default.advanced.css" media="all" rel="stylesheet" type="text/css" />
<!--[if lt IE 7]>
<script type="text/javascript" src="js/jquery/jquery.js"></script>
<script type="text/javascript" src="js/jquery/jquery.dropdown.js"></script>
<![endif]-->
<script type="text/javascript" src="../js/swfobject.js"></script>
<script type="text/javascript">
swfobject.embedSWF("http://www.virb.com/external/video/59984/MsOGibJlcnVwzc26YS7fJp054ayyiGkt", "wmfg", "980", "477", "9.0.0", false,
false,
{wmode:"transparent",allowFullScreen:"true",quality:"high",bgcolor:"#000000",salign:"tl"},
{id:"wmfg",name:"wmfg"}
);
</script>
</head>
<body>
<h1>Fehler</h1>
<ul class="dropdown dropdown-horizontal">
<li><a href="home.html">Home</a></li>
<li><a href="meetings.html" class="meetings">Meetings</a>
<ul>
<li><a href="./meetings/request.html">Request</a></li>
<li><a href="./meetings/edit.html">Edit</a></li>
<li><a href="./meetings/cancel.html">Cancel</a></li>
</ul>
</li>
<li><a href="./phpkalender/index.php">Calendar</a></li>
<li><a href="account.html" class="account">Account</a>
<ul>
<li><a href="./account/data.php">Change Personal Data</a></li>
<li><a href="./account/password.html">Change Password</a></li>
</ul>
</li>
<li><a href="admin.html" class="admin">Admin</a>
<ul>
<li><a href="./admin/add_user.php">Add User</a></li>
<li><a href="./admin/admin.html">Rooms</a></li>
<li><a href="./admin/buildings.html">Buildings</a></li>
<li><a href="./admin/equipment.html">Equipment</a></li>
</ul>
</li>
<li><a href="../logout.php">Logout</a></li>
</ul>
<p><br/>
<br/>
</p>
<p>&nbsp;</p>
<?php
function hex_value($value)
{
switch($value)
{
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9': return intval($value);
case 'A':
case 'a': return 10;
case 'B':
case 'b': return 11;
case 'C':
case 'c': return 12;
case 'D':
case 'd': return 13;
case 'E':
case 'e': return 14;
case 'F':
case 'f': return 15;
}
}
function hextoint($hex)
{
unset($result);
$count = strlen($hex) - 1;
for($i = $count; $i >= 0; $i--)
{
$result += pow(16, $count - $i) * hex_value($hex{$i});
}
return $result;
}
echo preg_replace('/%([0-9A-F]{2})/ise', "chr(hextoint('\\1'))", $_SERVER['QUERY_STRING']);
?><br><br>
<a href="<?php echo $_SERVER['HTTP_REFERER']?>">Back</a>
</body>
</html>