GIF89a
<!DOCTYPE html> <?php ob_start(); ini_set('error_reporting', E_STRICT); include("connect.php"); mysqli_set_charset($conn,'utf8'); date_default_timezone_set('Asia/Kolkata'); ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Solway:wght@300&display=swap" rel="stylesheet"> <link href="assest/css/font-awesome.min.css" rel="stylesheet"> <link href="mystyle.css" type="text/css" rel="stylesheet"> <link href="style.css" rel="stylesheet"> <!-- Latest compiled and minified CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet"> <!-- Latest compiled JavaScript --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css"> <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script> <title>Care</title> </head> <body> <section style=""> <div class="container"> <div class="row d-flex justify-content-center"> <div class="col-xs-5 col-sm-8 col-md-8 col-lg-6 col-xl-4"> <div class="card-header d-flex justify-content-between align-items-center mt-2"> <p class="text-primary mx-auto fs-4 ">Payment Confirmation</p><br> </div> <div class="card-header d-flex justify-content-between align-items-center"> <img src="assest/images/tick.png" class="mx-auto my-5" style="height:auto ; max-width: 60%"> </div> <div class="row mb-4"> <div class="col-sm-12 col-xs-12 text-center"> <?php if($_GET['type']=="1"){ ?> <h5 class="text-primary text-center">COD Order Successfull</h5> <small class="text-muted text-center">Your COD order has been placed successfully</small> <?php } else { ?> <h5 class="text-primary text-center">Ticket Payment Successful</h5> <small class="text-muted text-center">Your Payment Has Been Successful Details of Transaction Are Included Below</small> <?php } ?> <hr> <h6 class="text-primary text-center">Transaction No : <?php echo $_GET['orderid']; ?></h6> <br> <ul class="list-group list-group-flush "> <li class="list-group-item px-0"> <div class="float-start text-muted">Recipient :</div> <div class="float-end text-muted"><?php echo $_GET['name']; ?></div> </li> <li class="list-group-item px-0"> <div class="float-start text-muted">Email ID</div> <div class="float-end text-muted"><?php echo $_GET['email']; ?></div> </li> <li class="list-group-item px-0"> <div class="float-start text-muted">TOTAL AMOUNT PAID :</div> <div class="float-end text-muted"><?php echo $_GET['price']/100; ?></div> </li> <li class="list-group-item px-0"> <div class="float-start text-muted">PAYED BY :</div> <div class="float-end text-muted">ROZAR PAY</div> </li> <li class="list-group-item px-0"> <div class="float-start text-muted">TRANSACTION DATE :</div> <div class="float-end text-muted"><?php echo date('Y-m-d'); ?></div> </li> </ul> </div> </div> </div> </div> </section> </body> </html> <script type="text/javascript"> setInterval(function(){ window.location.href = ("dashboard.php"); },6000); </script>