UnknownSec Bypass
403
:
/
var
/
www
/
jpsagrisolution
/
cpanel
/
product_images
/
sym
/
root
/
var
/
www
/
stbilling
/
data-table
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
index.php
<?php require_once './config/db-config.php'; require_once './controller/product-controller.php'; $db = new DBController(); $conn = $db->connect(); $dCtrl = new ProductsController($conn); $employees = $dCtrl->index(); ?> <!DOCTYPE html> <html> <head> <title>Datatable Implementation in PHP</title> <!-- Bootstrap 4 CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.css"> <link rel="stylesheet" type="text/css" href="print.css" media="print"> </head> <body> <div class="container mt-5" id="dvContents"> <div class="row"> <div class="col-xl-12 col-lg-12 col-md-12 col-12 m-auto"> <table class="table table-bordered table-hovered table-striped" id="productTable"> <thead> <th> Employee ID </th> <th> Employee Name </th> <th> Skill </th> <th> Address </th> <th> Designation </th> <th> Age </th> <th style="width:30px;" id="edithead"></th> <th style="width:30px;" id="deletehead"></th> </thead> <tbody> <?php foreach($employees as $employee) : ?> <tr> <td> <?php echo $employee['id']; ?> </td> <td> <?php echo $employee['name']; ?> </td> <td> <?php echo $employee['skills']; ?> </td> <td> <?php echo $employee['address']; ?> </td> <td> <?php echo $employee['designation']; ?> </td> <td> <?php echo $employee['age']; ?> </td> <td id="editrow"><a href='add_district.php?id=<?php echo $row["distcode"]; ?>&op=<?php echo "Update"; ?>'><i class=" glyphicon glyphicon-pencil"></i>Edit</a></td> <td id="deleterow"><a href='add_district.php?id=<?php echo $row["distcode"]; ?>&op=<?php echo "Delete"; ?>'><i class="glyphicon glyphicon-trash"></i>Delete</a></td> </tr> <?php endforeach; ?> </tbody> </table> </div> </div> <div> <button onclick="window.print();" id="print-btn">Print</button> </div> </div> <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> <!-- CDN jQuery Datatable --> <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.js"></script> </body> </html> <script> $(document).ready(function() { $('#productTable').DataTable(); }); </script>
Copyright © 2025 - UnknownSec