UnknownSec Bypass
403
:
/
var
/
www
/
zenithentcare
/
stmedicosoftware
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
appointment_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">APPOINTMENT LIST</h2> </td> <td width="30%" align="right"><a href="book_appointment_form.php" class="btn btn-primary"><i class="fa fa-plus"></i> Add New Appointment</a></td> </tr> </table> <!--/forms--> <?php //require_once "../config.php"; $curdate=date('Y-m-d'); $sql= "Select app.appid,app.appno,DATE_FORMAT(app.appdate, '%d-%m-%Y') as appdate,app.name,app.age,app.gender,app.mobileno,cons.AccountName as consultant,case when isdeleted=0 then 'Booked' else 'Cancel' end as isdeleted from appointmenttb as app,mastertb as cons where app.consultantid=cons.accountmasterid and app.appdate='".$curdate."'"; $result=mysqli_query($conn, $sql) or die("Query Failed."); if (mysqli_num_rows($result)>0) { ?> <table id="studtable"> <thead> <tr> <th width="10%">ID</th> <th width="10%">App No</th> <th width="10%">App Date</th> <th width="10%">Name</th> <th width="10%">Age</th> <th width="10%">Gender</th> <th width="10%">Mobile No</th> <th width="10%">Consultant</th> <th width="10%">App. Type</th> <th width="10%"></th> </tr> </thead> <tbody> <?php $serial= 1; while ($row = mysqli_fetch_assoc($result)) { ?> <tr> <td><?php echo $row['appid']; ?> </td> <td> <?php echo $row['appno']; ?> </td> <td> <?php echo $row['appdate']; ?> </td> <td> <?php echo $row['name']; ?> </td> <td> <?php echo $row['age']; ?> </td> <td> <?php echo $row['gender']; ?> </td> <td> <?php echo $row['mobileno']; ?> </td> <td> <?php echo $row['consultant']; ?> </td> <td> <?php echo $row['isdeleted']; ?> </td> <td align="center"> <div class="dropdown" align="left"> <p> <a href='book_appointment_form.php?id=<?php echo $row["appid"]; ?>&op=<?php echo "Cancel"; ?>'><i class=" glyphicon glyphicon-pencil"></i><?php echo $row['isdeleted']; ?></a></p> </div> </div> </td> </tr> <?php $serial++; } } ?> </tbody> </table> </div> </div> </div> <!-- //inner_content_w3_agile_info--> </div> <!-- //inner_content--> </div> <!-- banner --> <!-- //inner_content--> <style> .dropdown { position: relative; display: inline-block; } .dropdown-content { 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; } .dropdown:hover .dropdown-content { 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