Server IP : 162.214.80.37 / Your IP : 216.73.216.83 Web Server : Apache System : Linux sh013.webhostingservices.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : imyrqtmy ( 2189) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/imyrqtmy/public_html/ayusshiherbs/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); error_reporting(E_ERROR | E_PARSE); $se = $_SESSION["id"]; if (!isset($_SESSION['id'])) { header("Location: login.php"); } include("admin/includes/config.php"); ?> <!doctype html> <html lang="en"> <head> <?php require "inc/head.php" ?> <body data-sidebar="dark"> <div id="layout-wrapper"> <!-- header --> <!-- header --> <div class="main-content"> <div class="page-content"> <div class="container-fluid"> <!-- start page title --> <div class="row"> <div class="col-12"> <div class="page-title-box d-sm-flex align-items-center justify-content-between"> </div> </div> </div> <div class="row justify-content-center"> <!-- Centering the content --> <div class="col-lg-8"> <!-- Using 6 columns --> <div class="card"> <div class="card-body"> <?php $order_no = $_GET['order_no']; $query = "SELECT * FROM `tbl_orders` WHERE order_no = '$order_no'"; $query_run = mysqli_query($conn, $query); if(mysqli_num_rows($query_run) > 0) { foreach($query_run as $row) { ?> <div class="invoice-title"> <div style="border-bottom: 1px solid;"> <div class="md-4"> <img src="assets/images/brand.png" class="img_invoce" alt="logo" height="97" style="padding-top: 3px;position: absolute;padding-left: 62px;"> </div> <div class="md-4"> <h2 class=" font-size-14 table-heading" >Ayusshi Herbs Pvt Ltd</h2> </div> <p class="gst">GST NO: 06AAZCA6675K1ZR</p> </div> </div> <div class="table-responsive" style="border-bottom: 1px solid;"> <table class="table table-nowrap"> <thead> </thead> <tbody> <tr> <td style="border-bottom-width: 0px;"> <strong> Order Number : </strong> <?php echo $row['order_no']; ?> </td> <!-- <?php echo $row['order_no']; ?> --> <td style="border-bottom-width: 0px;"> <strong> Date : </strong> <?php echo $row['created_at']; ?> </td> </tr> <tr> <td style="border-bottom-width: 0px;"> <strong> Order Amount : </strong> <?php echo $row['total_amt']; ?> </td> </tr> </tbody> </table> </div> <div class="table-responsive" style="border-bottom: 1px solid;"> <table class="table table-nowrap"> <thead> </thead> <tbody> <tr> <td style="border-bottom-width: 0px;"><strong> Name : </strong> <?php echo $row['name']; ?> </td> <td style="border-bottom-width: 0px;"><strong>Email : </strong> <?php echo $row['email']; ?></td> </tr> <tr> <td style="border-bottom-width: 0px;"><strong> Phone : </strong> <?php echo $row['mobile']; ?></td> <td style="border-bottom-width: 0px;"> <strong> Address : </strong> <?php echo $row['address']; ?> </td> </tr> <tr> <td style="border-bottom-width: 0px;"><strong> City : </strong> <?php echo $row['district']; ?></td> <td style="border-bottom-width: 0px;"><strong> State : </strong> <?php echo $row['state']; ?></td> <!-- <td style="border-bottom-width: 0px;"> <strong> Zip Code : </strong> <?php echo $row['pincode']; ?> </td> --> </tr> <tr> <!-- <td style="border-bottom-width: 0px;"><strong> State : </strong> <?php echo $row['state']; ?></td> --> </tr> </tbody> </table> </div> <?php }} ?> <div class="table-responsive " > <table > <thead> </thead> <tbody> <tr class="footer-table"> <td style="padding: 8px; font-weight: bold;"> <!-- <strong>+91 6262010119</strong><br> <strong>+91 9212010935</strong><br> --> <strong class="foot">9899781022</strong><br> <!-- <strong>9212010935</strong><br> --> </td> <td style="padding: 8px; font-weight: bold;"> <ul> <strong class="foot">info@ayusshiherbs.com</strong> </ul> </td> <td style="padding: 8px; font-weight: bold;"> <strong class="foot">Flat No. Khatoni No 358,359, Khevat No 255//224, Narukheri, Uncha Siwana District: Karnal, State: Haryana, Pin Code: 132001, India</strong> </td> <!-- <td style="padding: 8px; font-weight: bold;"> <strong>House no -1072, Near karala Stadium, <br> New Delhi-110081 <br> Open Hours: Mon - Sat 8am to 9:30 am(Karala)</strong> </td> --> </tr> <tr> </tr> </tbody> </table> </div> <div class="d-print-none"> <div class="float-end"> <a href="javascript:window.print()" class="btn btn-success waves-effect waves-light me-1">Print</a> <!-- <i class="fa fa-print"></i> --> </div> </div> </div> </div> </div> </div> <!-- end row --> </div> <!-- container-fluid --> </div> <!-- End Page-content --> <!-- footer --> </div> <!-- end main content--> </div> <!-- END layout-wrapper --> <!-- Right Sidebar --> <!-- /Right-bar --> <!-- Right bar overlay--> <div class="rightbar-overlay"></div> <?php include 'admin/includes/bscript.php'; ?> <script src="assets/js/jquery.min.js"></script> <script src="assets/js/bootstrap.min.js"></script> <script src="assets/js/SmoothScroll.min.js"></script> <script src="assets/js/swiper.min.js"></script> <script src="assets/js/custom.js"></script> </body> </html>