G:
/
PleskVhosts
/
seeonsoft.com
/
hp.thefalconunited.com
/
up file
home
<?php $oid = $_GET['oid']; $cid = $_GET['cid']; include('config.php'); include('innerpageheader.php'); $result1 = $js->prepare('SELECT * FROM `otherservices` WHERE custid = :cid AND id = :oid'); $result1->execute(array(':cid' => $cid, ':oid' => $oid)); while($row1 = $result1->fetch(PDO::FETCH_ASSOC)) { $services = $row1['services']; $amount = $row1['amount']; $descr = $row1['descr']; } ?> <section> <div class="content add-details"> <div class="in-content-wrapper"> <div class="box"> <div class="row"> <div class="col"> <div class="details-text"> <h4>Add Other Services</h4> </div><!-- end details-text --> </div><!-- End column --> </div><!-- end row --> <div class="hotel-listing-form"> <form class="text-center" method="post" action="save_editotherservices.php"> <input type="hidden" value="<?php echo $cid?>" id="cid" name="cid" /> <input type="hidden" value="<?php echo $oid?>" id="oid" name="oid" /> <div class="row"> <div class="col-md"> <textarea class="form-control textarea text-left p-3" id="services" name="services" rows="5" placeholder="Enter Services"><?php echo $services?></textarea> </div><!-- end form-group --> <div class="col-md"> <textarea class="form-control textarea text-left p-3" id="descr" name="descr" rows="5" placeholder="Enter Description" style="white-space:pre-wrap;"><?php echo $descr?></textarea> </div><!-- end form-group --> </div><!-- end row --> <br /> <div class="row"> <div class="col-md"> <input type="text" class="form-control textarea text-left p-3" id="amount" name="amount" rows="5" placeholder="Enter Amount" value="<?php echo $amount?>"> </div><!-- end form-group --> </div> <br /> <ul class="list-inline"> <li class="list-inline-item"> <button type="submit" class="btn">Submit</button> </li> <li class="list-inline-item"> <a href="view_customers.php?id=<?php echo $cid?>" style="background-color:#FF3333; border-radius:5px; color:#fff;" class="btn"><strong>Back</strong></a> </li> </ul> </form> </div><!-- end hotel-listing-form --> </div><!-- end box -->