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="doctor3.php">Appointment Online</a></h4>
</div>
<?php
$strSQL ="SELECT * FROM appointment";
$objQuery = mysqli_query($objCon,$strSQL);
$Num_Rows = mysqli_num_rows($objQuery);
$Per_Page = 10; // Per Page
error_reporting( error_reporting() & ~E_NOTICE );
$Page = $_REQUEST["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" order by app_id DESC LIMIT $Page_Start , $Per_Page";
$objQuery = mysqli_query($objCon,$strSQL);
?>
<div class="content table-responsive table-full-width">
<table class="table table-hover">
<thead>
<th style="width:20%;">Doctor</th>
<th style="width:20%;">Clinic</th>
<th style="width:20%;">Full Name</th>
<th style="width:20%;">Submit Date</th>
<th style="width:20%;">Email</th>
<th style="width:20%;"><div align="center">Manage</div></th>
</thead>
<?php
while($objResult = mysqli_fetch_array($objQuery,MYSQLI_ASSOC))
{
?>
<tbody>
<tr>
<td><?php echo $objResult["doctor"];?></td>
<td><?php echo $objResult["clinic"];?></td>
<td><?php echo $objResult["fname"];?></td>
<td><?php echo $objResult["submit_date"];?></td>
<td><?php echo $objResult["mail"];?></td>
<td>
<div align="center">
<button type="button" rel="tooltip" class="btn btn-default btn-sm btn-simple" onclick="window.location.href='viewappointment.php?app_id=<?php echo $objResult['app_id'];?>'" title="ดูข้อมูล">
<i class="fa fa-search-plus" ></i> View
</button>
<a href="JavaScript:if(confirm('Are you sure you want to delete this item ?')==true){window.location='deleteapp.php?app_id=<?php echo $objResult['app_id'];?>&file=<?php echo $objResult["file"];?>'}">
<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>
<nav aria-label="Page navigation">
<ul class="pagination">
<?php
if($Prev_Page)
{
echo "<li><a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page' aria-label='Previous'><span aria-hidden='true'>«</span></a></li>";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "<li><a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a></li>";
}
else
{
echo "<li class='active'><a> $i </a></li>";
}
}
if($Page!=$Num_Pages)
{
echo "<li><a href='$_SERVER[SCRIPT_NAME]?Page=$Next_Page' aria-label='Next'><span aria-hidden='true'>»</span></a></li>";
}
?>
</ul>
</nav>
</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