Changes

Jump to navigation Jump to search

Landing Page

303 bytes added, 21:09, 23 January 2020
no edit summary
[[Category:How to]]
[[Category:Booking_Page]]
[[Category:Booking_Engine]]
Required skills: php, html, css
''This page explains to how to create a custom landing page''
You can specify a landing page after a booking is made at SETTINGS-> BOOKING ENGINE -> BOOKING PAGE->BEHAVIOUR "Booking Return URL
The guest will be redirected to your page after they book.
We will include information about the booking as parameters added to your Url
If you have entered a Booking Return Url we will redirect Using PHP or other scripting languages it is possible to process the parameters and display personalised information to the guest to your site after they book.We The following PHP test script will include information about display the booking as parameters added to your Urlraw data.
Using PHP or other scripting languages it is possible Use this as a starting point to process and display personalised information to the guest.The following PHP test script will show the supplied datacreate your own design.
<nowiki><?php
echo "<br>bookid=".$_GET["bookid"];
echo "<br>propid=".$_GET["propid"];
echo "<br>guestcomments=".urldecode($_GET["guestcomments"]);
echo "<br>ratedesc=".urldecode($_GET["ratedesc"]);
?></nowiki>

Navigation menu