-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredirect.php
47 lines (42 loc) · 1.21 KB
/
redirect.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
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
*{
padding:0px;
margin:0px;
}
.container{
text-align:center;
}
.container img{
display:block;
margin:0 auto;
}
.container h2{
font-family:sans-serif;
}
span{
color:green;
}
</style>
</head>
<body>
<?php
include 'navbar.php';
?>
<div class="container">
<img src="imgs/logo.png" alt="logo"> <br>
<?php
echo "<h3> Request Id : ".$_REQUEST['payment_id']."</h3>";
echo "<h3> Status : <span>".$_REQUEST['payment_status']."</span></h3>";
echo "<h3> Date : ".date('d-m-y')."</h3>";
$timezone =date_default_timezone_get();
date_default_timezone_set("Asia/Kolkata");
echo "<h3> Time : ".date("h:ia")."</h3>";
?>
</div>
</body>
</html>