MINI MINI MANI MO
<!doctype html>
<?php
session_start();
if($_SESSION['admin_id'] == "")
{
include("session.php");
}
include("connect.php");
$strSQL = "SELECT * FROM admin WHERE admin_id = '".$_SESSION['admin_id']."'";
$objQuery = mysqli_query($objCon,$strSQL);
$objResult = mysqli_fetch_array($objQuery,MYSQLI_ASSOC);
?>
<html>
<head>
<?php include("assets/include/link.php"); ?>
</head>
<body>
<div class="wrapper">
<?php include("nav-menu.php"); ?>
<div class="main-panel">
<?php include("assets/include/account.php"); ?>
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="card card-plain">
<div class="header">
<h4 class="title"><a href="doctor.php">Department Vibharam Hospital</a></h4>
</div><div class="header">
<h6 class="title"><a href="doctor.php">Doctor Menu</a></h6>
</div>
<?php
$strSQL2 ="SELECT a.*, b.*
FROM doctor a
LEFT JOIN admin b
ON a.admin_id=b.admin_id";
$objQuery2 = mysqli_query($objCon,$strSQL2);
$objResult2 = mysqli_fetch_array($objQuery2,MYSQLI_ASSOC);
?>
<div class="content table-responsive table-full-width">
<table class="table table-hover">
<thead>
<th style="width:30%;">Icons</th>
<th style="width:30%;">Doctor (TH)</th>
<th style="width:20%;"><div align="center">Last Modified</div></th>
<th style="width:20%;"><div align="center">Manage</div></th>
</thead>
<tbody>
<tr>
<td><i class="<?php echo $objResult2["icon"];?>"></i> <?php echo $objResult2["icon"];?></td>
<td><?php echo $objResult2["doctor1"];?></td>
<td><div align="center"><?php echo $objResult2["username"];?></div></td>
<td>
<div align="center">
<button type="button" rel="tooltip" class="btn btn-default btn-sm btn-simple" onclick="window.location.href='edit_doctor.php?doctor_id=<?php echo $objResult2['doctor_id'];?>'" title="แก้ไขข้อมูล">
<i class="fa fa-pencil-square" aria-hidden="true"></i> Edit
</button>
</div>
</td>
</tr>
</tbody>
</table>
<table class="table">
<tr><td> </td></tr>
</table>
</div>
<div class="header">
<h6 class="title"><a href="doctor.php">Department</a></h6>
</div>
<?php
$strSQL3 ="SELECT a.*, b.*
FROM department a
LEFT JOIN admin b
ON a.admin_id=b.admin_id";
$objQuery3 = mysqli_query($objCon,$strSQL3);
?>
<div class="content table-responsive table-full-width">
<a href="add_depart.php">
<button type="button" rel="tooltip" class="btn btn-info btn-simple btn-icon">
<i class="fa fa-plus-circle"></i> Add Department
</button>
</a>
<table class="table table-hover">
<thead>
<th style="width:30%;">Icons</th>
<th style="width:30%;">Department (TH)</th>
<th style="width:20%;"><div align="center">Last Modified</div></th>
<th style="width:20%;"><div align="center">Manage</div></th>
</thead>
<?php
while($objResult3 = mysqli_fetch_array($objQuery3,MYSQLI_ASSOC))
{
?>
<tbody>
<tr>
<td><i class="<?php echo $objResult3["icon"];?>"></i> <?php echo $objResult3["icon"];?></td>
<td><?php echo $objResult3["depart1"];?></td>
<td><div align="center"><?php echo $objResult3["username"];?></div></td>
<td>
<div align="center">
<button type="button" rel="tooltip" class="btn btn-default btn-sm btn-simple" onclick="window.location.href='edit_depart.php?depart_id=<?php echo $objResult3['depart_id'];?>'" title="แก้ไขข้อมูล">
<i class="fa fa-pencil-square" aria-hidden="true"></i> Edit
</button>
<a href="JavaScript:if(confirm('Are you sure you want to delete this item ?')==true){window.location='deletedepart.php?depart_id=<?php echo $objResult3['depart_id'];?>'}">
<button type="button" rel="tooltip" class="btn btn-danger btn-simple btn-icon" title="ลบข้อมูล">
<i class="fa fa-window-close" aria-hidden="true"></i> Remove
</button>
</a>
</div>
</td>
</tr>
</tbody>
<?php
}
?>
</table>
<table class="table">
<tr><td> </td></tr>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<?php include("assets/include/script.php"); ?>
<?php include "texteditor.php"; ?>
</html>
<?php
mysqli_close($objCon);
?>
OHA YOOOO