MINI MINI MANI MO

Path : /home/phaetpan/domains/phaetpanya.com/public_html/vibharamadmin/
File Upload :
Current File : /home/phaetpan/domains/phaetpanya.com/public_html/vibharamadmin/news.php

<!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="news.php"> News Vibharam Hospital</a></h4>
								</div>
								<?php
									date_default_timezone_set('Asia/Bangkok');
									$strSQL ="SELECT a.*, b.*
									FROM news a
									LEFT JOIN admin b
									ON a.admin_id=b.admin_id";
									$objQuery = mysqli_query($objCon,$strSQL);
									$Num_Rows = mysqli_num_rows($objQuery);

									$Per_Page = 6;   // 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 news_id DESC LIMIT $Page_Start , $Per_Page";
									$objQuery  = mysqli_query($objCon,$strSQL);
								?>
								<div class="content table-responsive table-full-width">
								<a href="add_news.php">
									<button type="button" rel="tooltip" class="btn btn-info btn-simple btn-icon">      
										<i class="fa fa-plus-circle"></i> Add News
									</button>
								</a>
									<table class="table table-hover">    
										<thead>
											<th style="width:24%;">News Images</th>
											<th style="width:24%;">News</th>
											<th style="width:15%;">Date</th>  
											<th style="width:15%;">Last Modified</th>      
											<th style="width:17%;"><div align="center">Manage</div></th>
										</thead>
									<?php
									while($objResult = mysqli_fetch_array($objQuery,MYSQLI_ASSOC))
										{ 
									?>
										<tbody>
											<tr>
												<td><img src="../upload_file/<?php echo $objResult["img"];?>" alt="image" height="165"/></td>       
												<td><?php echo $objResult["news1"];?></td>   
												<td><?php echo date("jS F Y",strtotime($objResult["newsdate"]));?></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_news.php?news_id=<?php echo $objResult['news_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='deletenews.php?news_id=<?php echo $objResult['news_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
										}
									?>
									</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'>&laquo;</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'>&raquo;</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