G:
/
PleskVhosts
/
seeonsoft.com
/
hp.thefalconunited.com
/
up file
home
<?php include('innerpageheader.php'); include('config.php'); $id = $_GET['id']; $result = $js->prepare('SELECT * FROM `customer_entry` WHERE id = :id'); $result->execute(array(':id' => $id)); while($row = $result->fetch(PDO::FETCH_ASSOC)) { $id = $row['id']; $custname = $row['custname']; } ?> <section> <div class="content add-details"> <div class="in-content-wrapper"> <div class="row no-gutters"> <div class="col"> <div class="heading-messages"> <h3>Update Customer</h3> </div><!-- End heading-messages --> </div><!-- End column --> </div><!-- end row --> <div class="box"> <div class="hotel-listing-form"> <form class="text-center" method="post" action="updatecustomer.php"> <input type="hidden" id="id" name="id" value="<?php echo $id?>" /> <div class="row"> <div class="col-md"> <div class="form-group"> <label for="inputGroupSelect07" class="">Customer Name:</label> <input type="text" class="form-control" required id="pax" name="pax" disabled="disabled" value="<?php echo $custname?>"> </div><!-- end form-group --> </div><!-- end column --> <div class="col-md"> <div class="form-group"> <div class="input-group"> <div class="input-group-prepend"> <label class="input-group-text" for="inputGroupSelect00">Status</label> </div> <select class="form-select" id="stats" name="stats"> <option value="">SELECT STATUS</option> <option value="Invoiced">Invoiced</option> <option value="Confirmed">Confirmed</option> <option value="Cancelled">Cancelled</option> </select> </div> </div><!-- end form-group --> </div><!-- end column --> </div> <!--end form-row --> <ul class="list-inline"> <li class="list-inline-item"> <button type="submit" class="btn">Submit</button> </li> <li class="list-inline-item"> <button type="reset" class="btn">Cancel</button> </li> </ul> </form> </div><!-- end hotel-listing-form --> </div><!-- end box --> </div><!-- end in-content-wrapper --> </div><!-- end add-details --> </section> <!-- ===========End Innerpage-wrapper============= --> </div><!-- end wrapper --> <?php include('footer.php'); ?>