|
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">Confirm Reservation</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">Confirm Reservation</li>
</ol>
</div>
<div class = "panel panel-default">
<div class = "panel-body">
<div class = "alert alert-info">Fill up form</div>
<?php
$query = $conn->query("SELECT * FROM `transaction` NATURAL JOIN `guest` NATURAL JOIN `room` WHERE `transaction_id` = '$_REQUEST[transaction_id]'") or die(mysqli_error());
$fetch = $query->fetch_array();
?>
<br />
<form method = "POST" enctype = "multipart/form-data" action = "save_form.php?transaction_id=<?php echo $fetch['transaction_id']?>">
<div class = "form-inline" style = "float:left;">
<label>Firstname</label>
<br />
<input type = "text" value = "<?php echo $fetch['firstname']?>" class = "form-control" size = "40" disabled = "disabled"/>
</div>
<div class = "form-inline" style = "float:left; margin-left:20px;">
<label>Middlename</label>
<br />
<input type = "text" value = "<?php echo $fetch['middlename']?>" class = "form-control" size = "40" disabled = "disabled"/>
</div>
<div class = "form-inline" style = "float:left; margin-left:20px;">
<label>Lastname</label>
<br />
<input type = "text" value = "<?php echo $fetch['lastname']?>" class = "form-control" size = "40" disabled = "disabled"/>
</div>
<br style = "clear:both;"/>
<br />
<div class = "form-inline" style = "float:left;">
<label>Room Type</label>
<br />
<input type = "text" value = "<?php echo $fetch['room_type']?>" class = "form-control" size = "20" disabled = "disabled"/>
</div>
<div class = "form-inline" style = "float:left; margin-left:20px;">
<label>Room No</label>
<br />
<input type = "number" min = "0" max = "999" name = "room_no" class = "form-control" required = "required"/>
</div>
<div class = "form-inline" style = "float:left; margin-left:20px;">
<label>Days</label>
<br />
<input type = "number" min = "0" max = "99" name = "days" class = "form-control" required = "required"/>
</div>
<div class = "form-inline" style = "float:left; margin-left:20px;">
<label>Extra Bed</label>
<br />
<input type = "number" min = "0" max = "99" name = "extra_bed" class = "form-control"/>
</div>
<div class = "form-inline" style = "float:left; margin-left:20px;">
<label style = "color:#ff0000;">*Extra Bed cost 800</label>
</div>
<br style = "clear:both;"/>
<br />
<button name = "add_form" class = "btn btn-primary"><i class = "glyphicon glyphicon-save"></i> Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
<!--app content-->
<script src = "../js/jquery.js"></script>
<script src = "../js/bootstrap.js"></script>
<?php
include('footer.php');
?>