G:
/
PleskVhosts
/
seeonsoft.com
/
hp.thefalconunited.com
/
up file
home
<?php date_default_timezone_set('Asia/Calcutta'); $d_date = date('d/m/Y'); $d_time=date('H:i'); include('innerpageheader.php'); include('config.php'); //echo $d_date." - ".$d_time; $cid = $_GET['id']; $i=1; $vdteresult = $js->prepare('SELECT * FROM `customer_entry` where `id` = :cid'); $vdteresult->bindParam(':cid', $cid); $vdteresult->execute(); while($row = $vdteresult->fetch(PDO::FETCH_ASSOC)) { $custid = $row['custid']; $entry_date = date('d-m-Y', strtotime($row['entrydate'])); $arrival_date = date('d-m-Y', strtotime($row['plannningdate'])); $duration = $row['daysplanning']; $people = $row['pax']; $tour_style = $row['ptype']; $name = $row['custname']; $mail = $row['email']; $country = $row['countryfrom']; $nation = $row['nationality']; $phone = $row['phone']; $interest_in = $row['prefdest']; $category = $row['category']; $service = $row['services']; $remarks = $row['remarks']; $req = $service.$remarks; } ?> <section> <div class="content listing-content"> <div class="in-content-wrapper"> <div class="row no-gutters"> <div class="col"> <div class="heading-messages"> <h3>Customers</h3> </div><!-- End heading-messages --> </div><!-- End column --> <div class="col-md-4"> <div class="breadcrumb"> <div class="breadcrumb-item"><i class="fas fa-angle-right"></i><a href="#">Listing</a> </div> <div class="breadcrumb-item active"><i class="fas fa-angle-right"></i>All </div> </div><!-- end breadcrumb --> </div><!-- End column --> </div><!-- end row --> <form action="save_temp_enquiry.php" method="post" name="popup"> <h3 align="center"><U>ENQUIRY</U></h3> <table width="823" height="278" style="font-size:15px;"> <tr style="font-weight:bold"> <td width="178" height="37">CRN </td> <td>: <?php echo $custid?></td> <td width="149">Name</td> <td width="330">: <?php echo $name ?></td> </tr> <tr> <td height="40">Entry Date</td> <td>: <?php echo $entry_date?></td> <td>Planning Date </td> <td>: <?php echo $arrival_date?></td> </tr> <tr> <td height="36">Duration </td> <td>: <?php echo $duration?></td> <td>People</td> <td>: <?php echo $people?></td> </tr> <tr> <td height="35">Interested In</td> <td>: <?php echo $interest_in?></td> <td>Nationality</td> <td>: <?php echo $nation?></td> </tr> <tr> <td height="32">Tour Style</td> <td>: <?php echo $tour_style?></td> <td>Email </td> <td>: <?php echo $mail ?></td> </tr> <tr> <td height="36">Location</td> <td>: <?php echo $country?></td> <td>Phone</td> <td>: <?php echo $phone ?></td> </tr> <tr> <td height="44" style="vertical-align:top">Requirements & Travel Plan </td> <td width="295" style="vertical-align:top">: <?php echo $req?></td> <td style="vertical-align:top">Hotel Category</td> <td style="vertical-align:top">: <?php echo $category?></td> </tr> </table> <table> <tr> <td><a href="hotelsforcustomers.php?cid=<?php echo $cid?>" class="btn btn-primary">Hotels</a></td> <td><a href="travelassistance.php?cid=<?php echo $cid?>" class="btn btn-primary">Transportation Details</a></td> <td><a href="otherservices.php?cid=<?php echo $cid?>" class="btn btn-primary" style="color:white;">Other Services</a></td> <td><a href="updatedetails.php?cid=<?php echo $cid?>" class="btn btn-primary" style="color:white;">Update Details</a></td> <td><a href="generate_invoice.php?cid=<?php echo $cid?>" class="btn btn-primary" style="color:white;">Generate Invoice</a></td> </tr> </table> </form> </div> </div> </section> <?php include('footer.php'); ?>