G:
/
PleskVhosts
/
seeonsoft.com
/
hp.thefalconunited.com
/
up file
home
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="google" content="notranslate"> <title>FALCON EXPEDITIONS - DETAILED_TEMP_ENQUIRY</title> </head> <body> <?php date_default_timezone_set('Asia/Calcutta'); $d_date = date('d/m/Y'); $d_time=date('H:i'); include('config.php'); //echo $d_date." - ".$d_time; $cid = addslashes(strip_tags(trim($_GET['custid']))); $i=1; $vdteresult = $js->prepare('SELECT * FROM `customer_entry` where `custid` = :cid'); $vdteresult->bindParam(':cid', $cid); $vdteresult->execute(); while($row = $vdteresult->fetch(PDO::FETCH_ASSOC)) { $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']; $location = $row['location']; $nation = $row['nationality']; $phone = $row['phone']; $interest_in = $row['prefdest']; $category = $row['category']; $service = $row['services']; $remarks = $row['remarks']; $req = $service.$remarks; } ?> <span id ='prin' style='top: 0;position: absolute;left: 0;padding: 20px;'><?php echo $empname ?> </span> <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 $cid?></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 $location?></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> <h3 align="center">FOLLOW-UP</h3> <table height="337" width="800" border="2" cellpadding="3" cellspacing="1" align="center"> <tr> <th width="40" height="10">Sl No</th> <th width="94">Date</th> <th width="60">Time</th> <th>Remarks</th> </tr> <tr> <td height="35" ></td> <td></td> <td></td> <td></td> </tr> <tr> <td height="35" ></td> <td></td> <td></td> <td></td> </tr> <tr> <td height="35" ></td> <td></td> <td></td> <td></td> </tr> <tr> <td height="35" ></td> <td></td> <td></td> <td></td> </tr> <tr> <td height="35" ></td> <td></td> <td></td> <td></td> </tr> <tr> <td height="35" ></td> <td></td> <td></td> <td></td> </tr> <tr> <td height="35" ></td> <td></td> <td></td> <td></td> </tr> <tr> <td height="35" ></td> <td></td> <td></td> <td></td> </tr> <tr> <td height="35"></td> <td></td> <td></td> <td> </td> </tr> <tr> <td height="35"></td> <td></td> <td></td> <td></td> </tr> <tr> <td height="35"></td> <td></td> <td></td> <td></td> </tr> <tr> <td height="35"></td> <td></td> <td></td> <td></td> </tr> <tr> <td height="35"></td> <td></td> <td></td> <td></td> </tr> <tr> <td height="35"></td> <td></td> <td></td> <td></td> </tr> <tr> <td height="35"></td> <td></td> <td></td> <td></td> </tr> </table> <br /> <br /> <div align="right" style="font-weight:bold;">HANDLED BY .............................</div> </form> </body> </html>