Setup of your other pages

Using you favorite html editor you need to create following files
listings.php
advsearch.php
hotelmap.php
reservation.php
bookingform.php
hoteloverview.php
hotelprices.php
hotelvideo.php
hotelbrochure.php
inputdates.php

bestrate.php

The basic requirement of all the files is the same.

Between your head tags you will need to have the following
<?php
require ("config.inc.php");
$File = "filename.php";
include ("header_options.php");
?>
you need to change the filename.php to the name of the file you are working on.
next you will need the following in the body tag

<?php print("$OnLoad");?>

The following is an example of how it should look

<BODY <?php print("$OnLoad");? > BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0033CC" >

We suggest the the following code be put right after the body tag. In some html editor's this may not be possible.
ex. (Netobject Fushion) so try to get it as close as possible to allow the loading screens to
have the correct effect.


<?php
print ("$Loading_Display");
?>

Place the following were you would like to display the content
<?php
include ("$File");
?>

 

© 2003 XML Systems Inc.