Landing Page: Difference between revisions

Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
[[Category:Booking_Page]]
[[Category:Booking_Page]]


If you have entered a Booking Return Url we will redirect the guest to your site after they book.
Required skills: php, html, css
 
If you have entered a Booking Return Url the guest will be redirected to your site after they book.
We will include information about the booking as parameters added to your Url
We will include information about the booking as parameters added to your Url


Using PHP or other scripting languages it is possible to process and display personalised information to the guest.
Using PHP or other scripting languages it is possible to process the parameters and display personalised information to the guest.
The following PHP test script will show the supplied data.
The following PHP test script will display the raw data.  
 
Use this as a starting point to create your own design:


  <?php
  <?php
echo "<br>bookid=".$_GET["bookid"];
echo "<br>bookid=".$_GET["bookid"];
  echo "<br>propid=".$_GET["propid"];
  echo "<br>propid=".$_GET["propid"];
  echo "<br>roomid=".$_GET["roomid"];
  echo "<br>roomid=".$_GET["roomid"];