|
Server IP : 86.38.243.193 / Your IP : 216.73.217.143 Web Server : LiteSpeed System : Linux in-mum-web1336.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64 User : u493057690 ( 493057690) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : ON Directory (0755) : /home/u493057690/domains/iasfindia.com/public_html/admin/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
require_once 'validate.php';
require 'name.php';
?>
<?php
include('header.php');
?>
<?php
include('sidebar.php');
?>
<!--app content-->
<div class="app-content">
<div class="side-app">
<div class="page-header">
<h4 class="page-title">Check Out</h4>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#"><i class="fe fe-home mr-1"></i> Admin</a></li>
<li class="breadcrumb-item active" aria-current="page">Check Out</li>
</ol>
</div>
<div class = "panel panel-default">
<?php
$q_p = $conn->query("SELECT COUNT(*) as total FROM `transaction` WHERE `status` = 'Pending'") or die(mysqli_error());
$f_p = $q_p->fetch_array();
$q_ci = $conn->query("SELECT COUNT(*) as total FROM `transaction` WHERE `status` = 'Check In'") or die(mysqli_error());
$f_ci = $q_ci->fetch_array();
?>
<div class = "panel-body">
<a class = "btn btn-success" href = "reserve.php"><span class = "badge"><?php echo $f_p['total']?></span> Pendings</a>
<a class = "btn btn-info" href = "checkin.php"><span class = "badge"><?php echo $f_ci['total']?></span> Check In</a>
<a class = "btn btn-warning disabled"><i class = "glyphicon glyphicon-eye-open"></i> Check Out</a>
<br />
<br />
<table id = "table" class = "table table-bordered">
<thead>
<tr>
<th>Name</th>
<th>Room Type</th>
<th>Room no</th>
<th>Check In</th>
<th>Days</th>
<th>Check Out</th>
<th>Status</th>
<th>Extra Bed</th>
<th>Bill</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
$query = $conn->query("SELECT * FROM `transaction` NATURAL JOIN `guest` NATURAL JOIN `room` WHERE `status` = 'Check Out'") or die(mysqli_query());
while($fetch = $query->fetch_array()){
?>
<tr>
<td><?php echo $fetch['firstname']." ".$fetch['lastname']?></td>
<td><?php echo $fetch['room_type']?></td>
<td><?php echo $fetch['room_no']?></td>
<td><?php echo "<label style = 'color:#00ff00;'>".date("M d, Y", strtotime($fetch['checkin']))."</label>"." @ "."<label>".date("h:i a", strtotime($fetch['checkin_time']))."</label>"?></td>
<td><?php echo $fetch['days']?></td>
<td><?php echo "<label style = 'color:#ff0000;'>".date("M d, Y", strtotime($fetch['checkin']."+".$fetch['days']."DAYS"))."</label>"." @ "."<label>".date("h:i A", strtotime($fetch['checkout_time']))."</label>"?></td>
<td><?php echo $fetch['status']?></td>
<td><?php if($fetch['extra_bed'] == "0"){ echo "None";}else{echo $fetch['extra_bed'];}?></td>
<td><?php echo "Php. ".$fetch['bill'].".00"?></td>
<td><label class = "">Paid</label></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!--app content-->
<script src = "../js/jquery.js"></script>
<script src = "../js/bootstrap.js"></script>
<script src = "../js/jquery.dataTables.js"></script>
<script src = "../js/dataTables.bootstrap.js"></script>
<script type = "text/javascript">
$(document).ready(function(){
$("#table").DataTable();
});
</script>
<?php
include('footer.php');
?>