[[Category:Booking_Page]]
Required skills: php, html, css If you have entered a Booking Return Url we will redirect the guest will be redirected to your site after they book.
We will include information about the booking as parameters added to your Url
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 display the supplied raw data. Use this as a starting point to create your own design:
<?php
echo "<br>bookid=".$_GET["bookid"];
echo "<br>propid=".$_GET["propid"];
echo "<br>roomid=".$_GET["roomid"];