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="promotion.php">Promotion Vibharam Hospital</a></h4>
</div>
<div class="header">
<h6 class="title"><a href="promotion.php"> Promotion (TH)</a> | <a href="promotion2.php"> Promotion (EN)</a> | <a href="promotion3.php"> Promotion (CN)</a> | <a class="text-primary" href="promotion4.php"> Promotion (JP)</a> | <a href="promotion5.php"> Promotion (MM)</a> | <a href="promotion6.php"> Promotion (ARA)</a> </h6>
</div>
<?php
date_default_timezone_set('Asia/Bangkok');
$strSQL ="SELECT a.*, b.*
FROM promotion a
LEFT JOIN admin b
ON a.admin_id=b.admin_id
ORDER BY pro_id DESC";
$objQuery = mysqli_query($objCon,$strSQL);
?>
<div class="content table-responsive table-full-width">
<a href="add_promotion4.php">
<button type="button" rel="tooltip" class="btn btn-info btn-simple btn-icon">
<i class="fa fa-plus-circle"></i> Add Promotion
</button>
</a>
<table class="table table-hover">
<thead>
<th style="width:30%;">Promotion Images</th>
<th style="width:25%;">Promotion</th>
<th style="width:15%;">Date</th>
<th style="width:15%;">Last Modified</th>
<th style="width:15%;"><div align="center">Manage</div></th>
</thead>
<?php
while($objResult = mysqli_fetch_array($objQuery,MYSQLI_ASSOC))
{
?>
<?php
if($objResult["pro4"] != "")
{
?>
<tbody>
<tr>
<td><img src="../upload_file/<?php echo $objResult["img"];?>" alt="image" style="width:50%;"/></td>
<td><?php echo $objResult["pro4"];?></td>
<td><?php echo date("jS F Y",strtotime($objResult["prodate"]));?></td>
<td><?php echo $objResult["username"];?></td>
<td>
<div align="center">
<button type="button" rel="tooltip" class="btn btn-default btn-sm btn-simple" onclick="window.location.href='edit_promotion4.php?pro_id=<?php echo $objResult['pro_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='deletepromotion.php?pro_id=<?php echo $objResult['pro_id'];?>&img=<?php echo $objResult["img"];?>'}">
<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
}else{
}
?>
<?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