G:
/
PleskVhosts
/
seeonsoft.com
/
hp.thefalconunited.com
/
up file
home
<meta charset="UTF-8"> <?php include('config.php'); $cid = $_POST['cid']; $result = $js->prepare('SELECT * FROM `customer_entry` WHERE `id` = :cid'); $result->execute(array(':cid' => $cid)); while($row = $result->fetch(PDO::FETCH_ASSOC)) { $compname = $row['companyname']; $custname = $row['custname']; $dest = $row['prefdest']; } $package = $_POST['package']; $cost = $_POST['cost']; $pax = $_POST['pax']; $hotels = $_POST['hotels']; $roomnum = $_POST['roomnum']; $ebnum = $_POST['ebnum']; $result1 = $js->prepare('SELECT * FROM `package` WHERE pkgid = :package '); $result1->execute(array(':package' => $package)); while($row1 = $result1->fetch(PDO::FETCH_ASSOC)) { $pkgid = $row1['pkgid']; $pkgcode = $row1['pkgcode']; $pkgname = $row1['pkgname']; $days = $row1['days']; $nights = $row1['nights']; $region = $row1['region']; } ?> <style> @page { size: A4; margin: 13px !important; } @media print { @page { margin: 1cm; font-family:"Century Gothic"; color: #0D4477; } #footer { position:fixed; margin-left:-0.75%; bottom:0; } body {-webkit-print-color-adjust: exact; page-break-after:always;zoom : 95%;} .noprint {display:none;} #tables { padding-left:100px; padding-right:100px; } } @media print { table { page-break-inside: auto; } tr{ page-break-inside: avoid; page-break-after: auto; } img-container{ page-break-inside: avoid; page-break-after: auto; } /* #sme{display: block; width: 100%; height: 100%;page-break-inside: avoid;} */ } @font-face { font-family: myFirstFont; src: url(centurygothic.woff); } @font-face { font-family: myFirstFontbold; src: url(centurygothic_bold.ttf); font-weight: bold; } div { font-family: myFirstFont; } * { font-family: myFirstFont; } @media print { .noprint {display:none;} } @media screen { ... } --> </style> <script> function myFunction() { window.print(); } </script> <title>Proposal</title> <script type="text/javascript"> <!-- var message=""; function clickIE() {if (document.all) {(message);return false;}} function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) { if (e.which==2||e.which==3) {(message);return false;}}} if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;} else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;} document.oncontextmenu=new Function("return false"); document.onkeydown = function(e) { if(e.keyCode == 123) { return false; } if(e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)){ return false; } if(e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)){ return false; } if(e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)){ return false; } if(e.ctrlKey && e.shiftKey && e.keyCode == 'C'.charCodeAt(0)){ return false; } } </script> <script> $(document).ready(function() { document.onkeydown = function(e){ if (e.ctrlKey && (e.keyCode === 67 || e.keyCode === 86 || e.keyCode === 85 || e.keyCode === 117)) { return false; } else { return true; } }; }); </script> <div class="box" style=" font-size:13px;padding-left:20px; padding-right:20px; margin:20px; color:#0D4477;"> <table width="100%" style="font-family:'Century Gothic';"> <thead> <tr> <td align="center"><img src="images/dmc logo.PNG" style="margin:20px;" ></td> </tr> <tr> <th> <hr style="height:5px; color:#F6921E; background-color:#F6921E;"><br> </th> </tr> </thead> <tfoot> <tr> <td width="100%"> <table width="100%" border="0"> <tr> <td colspan="4" align="center"><hr style="height:5px; color:#000; background-color:#000;"><strong>www.thefalconexpeditions.com</strong> </td> </tr> </table> </tfoot> <tbody id="container"> <tr> <td> <div contenteditable="true" style="padding-left:10px; padding-right:10px; color:#007C7C;" align="justify" > <h3 align="center" style="background-color:#6B848C; color:#fff; padding:10px;"><?php echo $pkgname;?></h3> Dear <?php echo $custname?>, <br /><br /> Greetings from The Falcon Expeditions ! <br /><br /> With reference to our discussion, please find best offer for your holidays to <?php echo $region?>. <br /><br /> <strong>Special Offer : <?php echo $cost?> Omani Riyals for <?php echo $pax?>, for <?php echo $nights?> Nights and <?php echo $days?> Days</strong>, this cost includes : :- <br /><br /> <?php if($roomnum != '') { ?> Accommodation in <strong><?php echo $roomnum?> Rooms</strong> <?php if($ebnum != '') {?> + <?php echo $ebnum?> Extra Beds <?php }?> at the below mentioned hotels or similar. <br /> <table width="100%" border="1" cellpadding="5" cellspacing="5" style="border-collapse:collapse; margin-top:15px; border-style:groove; border-color:orange; color:#007C7C"> <tr style="background-color:#6B848C; color:#fff;"> <th>Sl No</th> <th>Location</th> <th>Hotel Name</th> <th>Star Category</th> <th>No. of Nights</th> <th>Room Type</th> <th>Meal Plan</th> </tr> <?php for($p=1;$p<=$hotels;$p++) { $hotel = $_POST['hotelname'.$p]; $roomtype = strtoupper($_POST['roomtype'.$p]); $meals = $_POST['meals'.$p]; $nightsnum = $_POST['nightsnum'.$p]; $resultprod = $js->prepare('SELECT * FROM `hotelvendor` WHERE id = :hotel '); $resultprod->execute(array(':hotel' => $hotel)); while($rowprod = $resultprod->fetch(PDO::FETCH_ASSOC)) { $location = $rowprod['location']; $hotelname = $rowprod['hotelname']; $category = $rowprod['category']; } echo "<tr style='color:#007C7C;'>"; echo "<td align='center'>$p</td>"; echo "<td align='center'>$location</td>"; echo "<td align='center'>$hotelname</td>"; echo "<td align='center'>$category STAR</td>"; echo "<td align='center'>$nightsnum</td>"; echo "<td align='center'>$roomtype</td>"; echo "<td align='center'>$meals</td>"; echo "</tr>"; } ?> </table> <?php } ?> <br /> <!--Transfers and sightseeing trips as per itinerary on private basis with English speaking Omani driver. --> <p align="center" style="color:#F6921E;"><strong>TOUR ITINERARY</strong></p> <?php $x=1; $results = $js->prepare('SELECT * FROM `itinerary` WHERE pkgid =:pkgid '); $results->execute(array(':pkgid' => $pkgid)); while($rows = $results->fetch(PDO::FETCH_ASSOC)) { $daytitle = $rows['daytitle']; $days = strip_tags($rows['daydetails']); $high = strip_tags(strtoupper($rows['highlights'])); echo "<p style='background-color:#738D74; color:#fff; padding:10px; font-family:Century Gothic;'><b>Day ".$x." : ".strip_tags(strtoupper($daytitle))."</b></p><p align='justify' style='margin-top:-10px; line-height:30px; font-family:Century Gothic; color: #007C7C; '>".nl2br($days)."</p>"; echo "<h6 style='background-color:F6921E; padding:10px; color:#fff; '>HIGHLIGHTS : $high</h6>"; ?> <p align="center"> <?php $resultsi = $js->prepare('SELECT * FROM `packageimages` WHERE package =:pkgid AND days = :x '); $resultsi->execute(array(':pkgid' => $pkgid, ':x' => $x)); while($rowsi = $resultsi->fetch(PDO::FETCH_ASSOC)) { $file = $rowsi['file']; ?> <img src="upload/package/<?php echo $pkgid?>/<?php echo $x?>/<?php echo $file?>" height="100" width="150" style="padding:10px;" / > <?php } ?> </p> <?php $x++; } ?> <hr /> <p align="justify" style="color:#F6921E;"><strong>Package Inclusions :-</strong></p> <ul> <li>Meet and Greet Assistance on your arrival and departure </li> <li>Accommodation as mentioned above, inclusive of all taxes. </li> <li>Transfers and sightseeing trips as per above itinerary on private basis. </li> <li>10 Days Oman Tourist Visa. </li> <li>All applicable taxes. </li> </ul> <p align="justify" style="color:#F6921E;"><strong>Package Exclusions :-</strong></p> <ul> <li>Airfare </li> <li>All kind of personal expenses such as tips, laundry, telephone bills and beverages. </li> <li>It also does not include any meals unless and otherwise specifically mentioned. </li> <li>Optional, suggested or unspecified activities ,Entrance Fees </li> <li>Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary </li> <li>Any cost arising due to natural calamities like, landslides, road blockage, etc (to be borne by the client, which is directly payable on the spot). </li> <li>Any increase in taxes or fuel price, leading to increase in cost on surface transportation & land arrangements, which may come into effect prior to departure. </li> <li>Anything which is not included in the inclusion. </li> </ul> <p align="justify" style="color:#F6921E;" ><strong>TERMS & CONDITIONS </strong></p> <ul> <li>Booking will be confirmed only after receiving advance and on availability of hotels mentioned, we do not block rooms at the time of sending quotations. </li> <li>In case of non-availability of rooms in any of the mentioned hotels, the same will be communicated to you and will give you different options and the rate of package will increase or decrease depends on the hotels selected. </li> <li>We suggest you to check reviews and location of hotels mentioned to make sure it is as per your preferences before confirming the package and change of hotel on arrival would charge retention. </li> <li>Any extra bed/breakfast for kids which is not mentioned has to be paid directly by guest as per the hotel policy ,We do not have any control on the food supplied and is solely on the discrimination of hotel selected. </li> </ul> <p align="justify" style="color:#F6921E;" ><strong>BOOKING PROCEDURE</strong></p> <ul> <li>Once you confirm the package and dates of arrival, do inform to our respective executive. They will process your booking and send you a detailed Invoice including our bank account details to transfer the advance payment. </li> <li>Once booking is completed you will receive Hotel Confirmation Vouchers from our CRS team (This takes two to four working days depends on rush as we need to get email confirmation from hotels before issuing our voucher). </li> <li> Our Local representative details will be shared one day prior to your arrival. </li> </ul> <p align="center" > <br /> Thank you for choosing THE FALCON EXPEDITIONS as your Holiday Organizer </p> </div> </td></tr> </tbody> </table> <div class="noprint"> <p align="center"> <a href="#" onclick="myFunction()" style="border:5px solid; background-color:#093; color:#FFF; padding:8px; text-decoration:none;">PRINT</a> <a href="view_packages.php" style="border:5px solid; background-color:#F00; color:#FFF; padding:8px; text-decoration:none;">CLOSE</a> </p> </div> </div>