Server IP : 103.53.40.154 / Your IP : 52.14.100.101 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/ppcad7no/joshidiagnosticcentre.com/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Payment </title> </head> <body> <?php include "oth-header.php";?> <?php include "admin/config.php"; $sql = "SELECT * FROM payment_page"; $run = mysqli_query($conn,$sql) or die("Query Not run"); while($data = mysqli_fetch_assoc($run)){ if(mysqli_num_rows($run) > 0){ ?> <section class=" py-3 py-md-4 py-lg-5" style="background-color:lightblue; margin:50px 0 50px 0;"> <div class="container"> <h2>Scane QR-Code For Payment</h2><br> <div class="row"> <div class="col-lg-6"> <div class="mb-3 mb-lg-0"> <img alt="Payment Nursing Careo" class="img-fluid" src="images/<?php echo $data['payment_img'];?>"> </div> </div> <div class="col-lg-6"> <h2 class="mb-3 mb-lg-4 mb-lg-5">Other Payment Options</h2> <h4 class="">PhonePe UPI Id- <?php echo $data['phonepe_no'];?></h4><br> <h4>Paytm No.- <?php echo $data['paytm_no'];?></h4><br> <h4 class="">GooglePe No.- <?php echo $data['googlepe_no'];?></h4><br><br> <div class="btn-toolbar"> <a class="btn btn-primary btn-lg" href="tel:7718379866"> <i class="fas fa-phone-alt mr-1"></i> Call Us For any query </a> </div> </div> </div> </div> </section> <?php } } ?> <?php include "footer.php";?> </body> </html>