-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherror.php
More file actions
67 lines (65 loc) · 912 Bytes
/
Copy patherror.php
File metadata and controls
67 lines (65 loc) · 912 Bytes
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
<?php
$code="0";
$msg="Unknown Error";
if(isset($_GET["code"]))
{
$code=$_GET["code"];
if($_GET["code"]=="400")
{
$msg="Bad Request";
}
else if($_GET["code"]=="401")
{
$msg="Unauthorized";
}
else if($_GET["code"]=="402")
{
$msg="Payment Required";
}
else if($_GET["code"]=="403")
{
$msg="Forbidden";
}
else if($_GET["code"]=="404")
{
$msg="Page Not Found";
}
else if($_GET["code"]=="408")
{
$msg="Request Timeout";
}
else if($_GET["code"]=="409")
{
$msg="Conflict";
}
else if($_GET["code"]=="500")
{
$msg="Internal Server Error";
}
else if($_GET["code"]=="501")
{
$msg="Not Implemented";
}
else if($_GET["code"]=="502")
{
$msg="Bad Gateway";
}
else if($_GET["code"]=="503")
{
$msg="Service Unavailable";
}
else if($_GET["code"]=="504")
{
$msg="Gateway Timeout";
}
}
?>
<html>
<head>
<title></title>
<style>
</style>
</head>
<body>
</body>
</html>