require 'admin/reservations-public.php';
$this_year = date('Y');
$this_month = date('n');
$selected_year = $this_year;
$selected_month = $this_month;
$hotdeal_data = get_hotdeals();
?>
|
|
Hot Deals
Reservations for the Harborside Villas, Atlantis sell out quickly - but we can occasionally offer discounts when we have additional inventory or a last minute opening. Check out the hot deals below for additional savings over our already discounted rates. Same great accomodations, same full-access privileges to Atlantis and Harborside amenities.
- Our RATES ARE FLAT - there are NO additional taxes or surcharges or add ons.
$day_names = array(1=>'Friday',2=>'Saturday',3=>'Sunday');
$unit_names = array(1=>'ONE BDRM DELUXE',2=>'ONE BDRM PREMIUM',3=>'TWO BDRM DELUXE');
while (list($index,$hotdeal_info) = each($hotdeal_data)) {
print "";
print date('m/d/y',$hotdeal_info['start_date'])." - " .
date('m/d/y',$hotdeal_info['end_date'])." \n";
$check_in = $hotdeal_info['check_in'];
print $day_names[$check_in]." - ".$day_names[$check_in]." | \n";
print "".$unit_names[$hotdeal_info['unit_type']];
$num_units = $hotdeal_info['num_units'];
if ($num_units < 4) {
print " \n".$num_units." unit";
if ($num_units > 1) print "s";
print " left";
}
print " | \n";
print "";
print "\n";
print " \n";
print " ";
if ($hotdeal_info['atlantis_rate'] != 0) {
print "Regular Rate ";
print "$".number_format($hotdeal_info['atlantis_rate'])." ";
}
print "Our Rate $".number_format($hotdeal_info['rate']);
print " | \n ";
print "";
print " ";
print " | \n";
print " \n";
print " ";
print " | \n";
print " \n";
}
?>
|