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/prepackage.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="prepackage.php">Pre Package</a></h4>    
								</div>
										<?php
											$strSQL ="SELECT * FROM booking_pack";
											$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 bookpack_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:25%;">Package</th> 
											<th style="width:25%;">Full Name</th> 
											<th style="width:20%;">Email</th> 
											<th style="width:10%;">Phone</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["package"];?></td>   
												<td><?php echo $objResult["name"];?></td>   
												<td><?php echo $objResult["email"];?></td>   
												<td><?php echo $objResult["tel"];?></td>     
												<td>
													<div align="center">
													<button type="button" rel="tooltip" class="btn btn-default btn-sm btn-simple" onclick="window.location.href='viewbookingpack.php?bookpack_id=<?php echo $objResult['bookpack_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='deletebookingpack.php?bookpack_id=<?php echo $objResult['bookpack_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>
									<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>
</body>
<?php include("assets/include/script.php"); ?>
<?php include "texteditor.php"; ?>
</html>
<?php 
	mysqli_close($objCon);
?>

OHA YOOOO