-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection.php
48 lines (44 loc) · 1.09 KB
/
connection.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
<?php
//error_reporting(0);
@$connection = mysqli_connect('localhost', 'root', '', 'trip');
if($connection){
echo "<script>console.log('%c Connected! ', 'background: white; color: Green');</script>";
//echo "<div class='circle__status-sucess blink_me'></div> ";
}
else{
//echo "<h2> Offline </h2> <div class='circle__status-error blink_me'></div>";
echo "<script>console.log('%c Connection Error! ', 'background: red; color: white');</script>";
}
?>
<!---->
<!--<style>-->
<!-- .blink_me {-->
<!-- animation: blinker 2s linear infinite;-->
<!-- }-->
<!---->
<!-- @keyframes blinker {-->
<!-- 50% {-->
<!-- opacity: 0;-->
<!-- }-->
<!-- }-->
<!---->
<!-- .circle__status-sucess {-->
<!-- height: 30px;-->
<!-- width: 30px;-->
<!-- border-radius: 55px;-->
<!-- background-color: green;-->
<!-- display: inline-block;-->
<!-- }-->
<!---->
<!-- .circle__status-error {-->
<!-- height: 30px;-->
<!-- width: 30px;-->
<!-- border-radius: 55px;-->
<!-- background-color: red;-->
<!-- display: inline-block;-->
<!-- }-->
<!---->
<!-- h3 {-->
<!-- display: inline-block;-->
<!-- }-->
<!--</style>-->