hjkhghopjkertteerterterterertertrtoirh
bnmbertsurhetertertertertertertertpdf'tdfg
/
home
/
u313348419
/
domains
/
paramedicalcouncilup.org
/
public_html
/
Upload FileeE
HOME
<?php include "includes/db.php"; ?> <!DOCTYPE html> <html dir="ltr" lang="en"> <head> <!-- Meta Tags --> <meta name="viewport" content="width=device-width,initial-scale=1.0"/> <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> <meta name="description" content="Paramedical" /> <meta name="author" content="Paramedical"/> <!-- Page Title --> <title>New Registration | Paramedical Council</title> <!-- Favicon and Touch Icons --> <link href="images/favicon.png" rel="shortcut icon" type="image/png"> <link href="images/apple-touch-icon.png" rel="apple-touch-icon"> <link href="images/apple-touch-icon-72x72.png" rel="apple-touch-icon" sizes="72x72"> <link href="images/apple-touch-icon-114x114.png" rel="apple-touch-icon" sizes="114x114"> <link href="images/apple-touch-icon-144x144.png" rel="apple-touch-icon" sizes="144x144"> <!-- Stylesheet --> <link href="css/bootstrap.min.css" rel="stylesheet" type="text/css"> <link href="css/jquery-ui.min.css" rel="stylesheet" type="text/css"> <link href="css/animate.css" rel="stylesheet" type="text/css"> <link href="css/css-plugin-collections.css" rel="stylesheet"/> <!-- CSS | menuzord megamenu skins --> <link id="menuzord-menu-skins" href="css/menuzord-skins/menuzord-boxed.css" rel="stylesheet"/> <!-- CSS | Main style file --> <link href="css/style-main.css" rel="stylesheet" type="text/css"> <!-- CSS | Preloader Styles --> <link href="css/preloader.css" rel="stylesheet" type="text/css"> <!-- CSS | Custom Margin Padding Collection --> <link href="css/custom-bootstrap-margin-padding.css" rel="stylesheet" type="text/css"> <!-- CSS | Responsive media queries --> <link href="css/responsive.css" rel="stylesheet" type="text/css"> <!-- CSS | Style css. This is the file where you can place your own custom css code. Just uncomment it and use it. --> <!-- <link href="css/style.css" rel="stylesheet" type="text/css"> --> <!-- Revolution Slider 5.x CSS settings --> <link href="js/revolution-slider/css/settings.css" rel="stylesheet" type="text/css"/> <link href="js/revolution-slider/css/layers.css" rel="stylesheet" type="text/css"/> <link href="js/revolution-slider/css/navigation.css" rel="stylesheet" type="text/css"/> <!-- CSS | Theme Color --> <link href="css/colors/theme-skin-orange.css" rel="stylesheet" type="text/css"> <!-- external javascripts --> <script src="js/jquery-2.2.0.min.js"></script> <script src="js/jquery-ui.min.js"></script> <script src="js/bootstrap.min.js"></script> <!-- JS | jquery plugin collection for this theme --> <script src="js/jquery-plugin-collection.js"></script> <!-- Revolution Slider 5.x SCRIPTS --> <script src="js/revolution-slider/js/jquery.themepunch.tools.min.js"></script> <script src="js/revolution-slider/js/jquery.themepunch.revolution.min.js"></script> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-147079398-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-147079398-1'); </script> </head> <body class="has-side-panel side-panel-right fullwidth-page side-push-panel"> <div class="body-overlay"></div> <div id="wrapper" class="clearfix"> <!-- Header --> <?php include "includes/header.php"; ?> <!-- Start main-content --> <div class="main-content"> <!-- Section: inner-header --> <section class="inner-header divider layer-overlay overlay-deep" data-bg-img="images/bg/bg5.jpg"> <div class="container pt-90 pb-50"> <!-- Section Content --> <div class="section-content"> <div class="row"> <div class="col-md-12 xs-text-center"> <h3 class="font-28">payment Success</h3> </div> </div> </div> </div> </section> <?php include 'includes/db.php'; // print_r($_POST); $transactionid = $_POST['txnid']; $firstname = $_POST['firstname']; $net_amount_debit = $_POST['net_amount_debit']; $phone = $_POST['phone']; date_default_timezone_set("Asia/Kolkata"); $date = date("l jS \of F Y h:i:s A"); $sql = "UPDATE `reg_payment` SET `payment_status`='1', `date` = '$date' WHERE transaction_id = '$transactionid'"; $query = mysqli_query($connection, $sql); ?> <section> <div class="container"> <div class="row"> <div class="col-sm-12" id="printableArea"> <div class="col-12 border-2px border-theme-colored p-15"> <div class="border text-center" id="printableArea"> <div class="text-center"> <img src="images/paramedical/logo2.png" height="100px"/> <h3>Membership for Paramedical Council</h3> </div> <div class="border p-3 border-2px border-theme-colored p-15"> <div class="row"> <div class="col-12"> <h3><b>Transaction Id : <?= $transactionid;?></b> </h3> <h3><b>Time : <?= $date;?></b> </h3> <h4><b>Name : <?= $firstname;?></b> </h4> <h4><b>Amount : <?= $net_amount_debit;?></b> </h4> <h4><b>Phone Number : <?= $phone;?></b> </h4> </div> </div> </div> </div> <div class="text-center m-5"> <input type="button" class="btn-sm" onclick="printDiv('printableArea')" value="Print Recipt" /> </div> </div> </div> </div> </section> </div> <!-- end main-content --> <!-- Footer --> <?php include "includes/footer.php"; ?> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> <script> function printDiv(divId) { var printContents = document.getElementById(divId).innerHTML; var originalContents = document.body.innerHTML; document.body.innerHTML = printContents; window.print(); document.body.innerHTML = originalContents; } </script>