0% found this document useful (0 votes)
60 views5 pages

Admin Panel: Manage Doctors

The document is a PHP script that manages doctors. It allows the admin to view a list of all doctors from the database in a table with their details. The admin can also delete doctors by clicking a delete button that removes the doctor from the database. When the page loads, it checks if the user is logged in as admin and includes files for the header, sidebar and footer.

Uploaded by

rahulteli2021
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
60 views5 pages

Admin Panel: Manage Doctors

The document is a PHP script that manages doctors. It allows the admin to view a list of all doctors from the database in a table with their details. The admin can also delete doctors by clicking a delete button that removes the doctor from the database. When the page loads, it checks if the user is logged in as admin and includes files for the header, sidebar and footer.

Uploaded by

rahulteli2021
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Manage doctors

<?php
session_start();
error_reporting(0);
include('include/config.php');
if(strlen($_SESSION['id']==0)) {
header('location:logout.php');
} else{

if(isset($_GET['del']))
{
$docid=$_GET['id'];
mysqli_query($con,"delete from doctors where id
='$docid'");
$_SESSION['msg']="data deleted !!";
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Admin | Manage Doctors</title>

<link
href="http://fonts.googleapis.com/css?family=Lato:300,400,400italic,600,7
00|Raleway:300,400,500,600,700|Crete+Round:400italic" rel="stylesheet"
type="text/css" />
<link rel="stylesheet"
href="vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="vendor/fontawesome/css/font-
awesome.min.css">
<link rel="stylesheet" href="vendor/themify-icons/themify-
icons.min.css">
<link href="vendor/animate.css/animate.min.css"
rel="stylesheet" media="screen">
<link href="vendor/perfect-scrollbar/perfect-
scrollbar.min.css" rel="stylesheet" media="screen">
<link href="vendor/switchery/switchery.min.css"
rel="stylesheet" media="screen">
<link href="vendor/bootstrap-touchspin/jquery.bootstrap-
touchspin.min.css" rel="stylesheet" media="screen">
<link href="vendor/select2/select2.min.css" rel="stylesheet"
media="screen">
<link href="vendor/bootstrap-datepicker/bootstrap-
datepicker3.standalone.min.css" rel="stylesheet" media="screen">
<link href="vendor/bootstrap-timepicker/bootstrap-
timepicker.min.css" rel="stylesheet" media="screen">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="assets/css/plugins.css">
<link rel="stylesheet" href="assets/css/themes/theme-1.css"
id="skin_color" />
</head>
<body>
<div id="app">
<?php include('include/sidebar.php');?>
<div class="app-content">

<?php include('include/header.php');?>

<!-- end: TOP NAVBAR -->


<div class="main-content" >
<div class="wrap-content container"
id="container">
<!-- start: PAGE TITLE -->
<section id="page-title">
<div class="row">
<div class="col-sm-8">
<h1
class="mainTitle">Admin | Manage Doctors</h1>

</div>
<ol class="breadcrumb">
<li>

<span>Admin</span>
</li>
<li class="active">
<span>Manage
Doctors</span>
</li>
</ol>
</div>
</section>
<!-- end: PAGE TITLE -->
<!-- start: BASIC EXAMPLE -->
<div class="container-fluid container-
fullw bg-white">

<div class="row">
<div class="col-md-12">
<h5 class="over-title
margin-bottom-15">Manage <span class="text-bold">Doctors</span></h5>
<p
style="color:red;"><?php echo htmlentities($_SESSION['msg']);?>
<?php echo
htmlentities($_SESSION['msg']="");?></p>
<table class="table
table-hover" id="sample-table-1">
<thead>
<tr>
<th
class="center">#</th>

<th>Specialization</th>
<th
class="hidden-xs">Doctor Name</th>

<th>Creation Date </th>

<th>Action</th>
</tr>
</thead>
<tbody>
<?php
$sql=mysqli_query($con,"select * from doctors");
$cnt=1;
while($row=mysqli_fetch_array($sql))
{
?>

<tr>
<td
class="center"><?php echo $cnt;?>.</td>
<td
class="hidden-xs"><?php echo $row['specilization'];?></td>

<td><?php echo $row['doctorName'];?></td>

<td><?php echo $row['creationDate'];?>

</td>

<td
>
<div
class="visible-md visible-lg hidden-sm hidden-xs">
<a href="edit-doctor.php?id=<?php
echo $row['id'];?>" class="btn btn-transparent btn-xs" tooltip-
placement="top" tooltip="Edit"><i class="fa fa-pencil"></i></a>

<a href="manage-doctors.php?id=<?php echo $row['id']?>&del=delete"


onClick="return confirm('Are you sure you want to delete?')"class="btn
btn-transparent btn-xs tooltips" tooltip-placement="top"
tooltip="Remove"><i class="fa fa-times fa fa-white"></i></a>

</div>
<div
class="visible-xs visible-sm hidden-md hidden-lg">

<div class="btn-group" dropdown is-open="status.isopen">

<button type="button" class="btn btn-primary btn-o btn-sm


dropdown-toggle" dropdown-toggle>

<i class="fa fa-cog"></i>&nbsp;<span


class="caret"></span>

</button>

<ul class="dropdown-menu pull-right dropdown-light"


role="menu">

<li>

<a href="#">

Edit
</a>

</li>

<li>

<a href="#">

Share

</a>

</li>

<li>

<a href="#">

Remove

</a>

</li>

</ul>

</div>

</div></td>
</tr>

<?php
$cnt=$cnt+1;
}?>

</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!-- end: BASIC EXAMPLE -->
<!-- end: SELECT BOXES -->

</div>
</div>
</div>
<!-- start: FOOTER -->
<?php include('include/footer.php');?>
<!-- end: FOOTER -->

<!-- start: SETTINGS -->


<?php include('include/setting.php');?>

<!-- end: SETTINGS -->


</div>
<!-- start: MAIN JAVASCRIPTS -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<script src="vendor/modernizr/modernizr.js"></script>
<script src="vendor/jquery-cookie/jquery.cookie.js"></script>
<script src="vendor/perfect-scrollbar/perfect-
scrollbar.min.js"></script>
<script src="vendor/switchery/switchery.min.js"></script>
<!-- end: MAIN JAVASCRIPTS -->
<!-- start: JAVASCRIPTS REQUIRED FOR THIS PAGE ONLY -->
<script
src="vendor/maskedinput/jquery.maskedinput.min.js"></script>
<script src="vendor/bootstrap-touchspin/jquery.bootstrap-
touchspin.min.js"></script>
<script src="vendor/autosize/autosize.min.js"></script>
<script src="vendor/selectFx/classie.js"></script>
<script src="vendor/selectFx/selectFx.js"></script>
<script src="vendor/select2/select2.min.js"></script>
<script src="vendor/bootstrap-datepicker/bootstrap-
datepicker.min.js"></script>
<script src="vendor/bootstrap-timepicker/bootstrap-
timepicker.min.js"></script>
<!-- end: JAVASCRIPTS REQUIRED FOR THIS PAGE ONLY -->
<!-- start: CLIP-TWO JAVASCRIPTS -->
<script src="assets/js/main.js"></script>
<!-- start: JavaScript Event Handlers for this page -->
<script src="assets/js/form-elements.js"></script>
<script>
jQuery(document).ready(function() {
Main.init();
FormElements.init();
});
</script>
<!-- end: JavaScript Event Handlers for this page -->
<!-- end: CLIP-TWO JAVASCRIPTS -->
</body>
</html>
<?php } ?>

You might also like