UnknownSec Bypass
403
:
/
var
/
www
/
zenithentcare
/
stmedicosoftware
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
load_department_list.php
<?php require_once "config.php"; session_start(); $query = "SELECT * from mastertb where identifier='" . $gdepartmentidentifier. "'"; $filter_query = $query; $statement = $connect->prepare($query); $statement->execute(); $total_data = $statement->rowCount(); $statement = $connect->prepare($filter_query); $statement->execute(); $result = $statement->fetchAll(); $total_filter_data = $statement->rowCount(); $sno=1; if ($total_filter_data ==0) { $msg="No Record Found"; echo $msg; return; } $output = ' <table id="studtable" class="table table-striped table-bordered"> <tr> <th>S.No.</th> <th>ID</th> <th>Department Name</th> <th></th> <th></th> </tr> '; if ($total_data > 0) { foreach ($result as $row) { $output .= ' <tr> <td>'.$sno.'</td> <td>'.$row["accountmasterid"].'</td> <td>'.$row["accountname"].'</td> <td><button onclick="edit('.$row["accountmasterid"].');" ><i class=" glyphicon glyphicon-pencil"></i></button></td> <td><button onclick="remove('.$row["accountmasterid"].');"><i class="glyphicon glyphicon-trash"></i></button></td> </tr> '; $sno=$sno+1; } } else { $output .= ' <tr> <td colspan="8" align="center">No Data Found</td> </tr> '; } $output .= ' </table> <br /> '; echo $output; ?>
Copyright © 2025 - UnknownSec