-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.php
76 lines (66 loc) · 2.02 KB
/
error.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
require "api/functions.php";
require "api/users/functions.php";
require "api/users/cookies.php";
$code = "Lỗi";
$text = "Đã có lỗi không xác định xảy ra. Vui lòng thử lại.";
if (is_numeric(get("code"))) {
$code = get("code");
http_response_code(intval(get("code")));
}
switch (get("code")) {
case "403": {
$text = "Bạn không có quyền truy cập vào trang này.";
break;
}
case "404": {
$text = "Thử kiểm tra lại địa chỉ URL bạn đã nhập. Không biết là bạn có nhập sai chỗ nào không?";
break;
}
case "500": {
$text = "Đã có lỗi không xác định xảy ra. Vui lòng liên hệ với nhà phát triển của website.";
break;
}
}
?>
<!DOCTYPE html>
<html lang="zxx">
<head>
<?php
$title = $code;
require __DIR__ . "/head.php";
?>
</head>
<body>
<!-- Header Section Begin -->
<header class="header">
<?php require "header.php"; ?>
</header>
<!-- Header End -->
<!-- Normal Breadcrumb Begin -->
<section class="normal-breadcrumb set-bg" data-setbg="/img/normal-breadcrumb.jpg">
</section>
<!-- Normal Breadcrumb End -->
<!-- Signup Section Begin -->
<section class="signup spad">
<div class="container">
<h3 class="nbhzvn_title"><?php echo $code ?></h3>
<p><?php echo $text ?></p>
<p><a href="/"><button class="site-btn">Về Trang Chủ</button></p>
</div>
</section>
<!-- Signup Section End -->
<!-- Footer Section Begin -->
<footer class="footer">
<?php require "footer.php" ?>
</footer>
<!-- Footer Section End -->
<!-- Js Plugins -->
<script src="/js/jquery-3.3.1.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/mixitup.min.js"></script>
<script src="/js/jquery.slicknav.js"></script>
<script src="/js/owl.carousel.min.js"></script>
<script src="/js/main.js"></script>
</body>
</html>