00001 <?php
00002
00003
00004
00005
00006
00007
00008 require_once('VCSDBDriver/VCSDBDriverHotel.php');
00009 require_once('HotelSearchPageHeader.php');
00010 require_once('PageBody.php');
00011
00012
00013
00014
00015 mb_internal_encoding("UTF-8");
00016
00017
00018
00019
00020 $hotel = new VCSDBDriverHotel();
00021
00022
00023
00024
00025
00026 $pageHeader = new HotelSearchPageHeader('Views/AdvancedFiltersForm.html');
00027
00028
00029
00030
00031 $pageHeader->assignParams($hotel);
00032
00033
00034
00035
00036 $response = $hotel->executeQuery();
00037
00038
00039
00040
00041 $pageBody = new PageBody(
00042 'Views/Pagination.html','Views/FormattedDetailedItem.html', 10, $response);
00043 ?>
00044 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
00045 <html xmlns="http://www.w3.org/1999/xhtml">
00046 <head>
00047 <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
00048 <meta id='keywords' name='keywords' content='overview' />
00049 <title>ValueCommerce - HTML Framework - SDB-F03</title>
00050
00051 <link href="css/vc_default.css" rel="stylesheet" type="text/css" />
00052
00053 </head>
00054
00055 <body style="margin:15px;">
00056 <?php
00057
00058
00059 $pageHeader->show();
00060
00061
00062
00063
00064 $pageBody->show();
00065 ?>
00066 </body>
00067 </html>