UnknownSec Bypass
403
:
/
var
/
www
/
stbilling
/
cpanel
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
list_state.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>STATE LIST:</h4> </div> <div class="col-md-7 grid_box1"> </div> <div class="col-md-2 grid_box1"> <a href="add_state.php" class="btn btn-primary" style="width: 100%">Add State</a> </div> <div class="clearfix"> </div> </div> <div class="table-responsive bs-example widget-shadow"> <div class="row"> <?php $sql="SELECT * FROM state ORDER BY stcode"; $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="stateTable"> <thead> <th> S.No. </th> <th>State Name</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['statename']; ?> </td> <td><a href='add_state.php?id=<?php echo $row["stcode"]; ?>&op=<?php echo "Update"; ?>'><i class=" glyphicon glyphicon-pencil"></i></a></td> <td><a href='add_state.php?id=<?php echo $row["stcode"]; ?>&op=<?php echo "Delete"; ?>'><i class="glyphicon glyphicon-trash"></i></a></td> </tr> <?php $serial++; } } ?> </tbody> </table> <br> </div> </div> </div> </div> </div> <?php include "footer.php";?> <script> $(document).ready(function() { $('#stateTable').DataTable(); }); </script>
Copyright © 2025 - UnknownSec