-
Notifications
You must be signed in to change notification settings - Fork 13
/
connection_error.php
52 lines (38 loc) · 1.13 KB
/
connection_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
<?php
include "header.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="session_expired_style.css">
</head>
<body>
<div class="flex-container">
<div class="flex-item">
<img id="session" src="/images/error.png">
</div>
<div class="flex-item-message">
<h1 id="session-sub">Uh-Oh !</h1>
<p id="session-sub">
We have error connecting to database !<br>
</p>
<p id="session">
<b>Error Message: </b>
<?php
if (isset($_GET['error'])) {
echo $_GET['error'];
}
?><br><br>
Make sure that the database login credentials are correct
and/or the server is set up properly/responding.<br>
<br>
Please try again after sometime. :)
</p>
</div>
<div class="flex-item">
<a href="home.php" class="button">Go Home</a>
</div>
</div>
</body>
</html>