Contact Us
Phone: 1-800-393-5881
or email us
   

    


<-Back
Flamingo Hilton


The Flamingo Las Vegas is a self-contained casino and resort with everything to offer its guests -- including 15 acres of a caribbean-style water playground and a wildlife habitat featuring Chilean Flamingos, penguins, swans, ducks and fish. The hotel, set on the famous four corners at Las Vegas Boulevard and Flamingo Road combines hospitality with the glamour and excitement of Las Vegas. More than 450 new games are offered in the Flamingo's newly remodeled casino, including favorites like video poker, Wheel of Fortune, Yahtzee, Monopoly's Chairman of the Board, Slingo, Blazing 7X and Bonus Blazing 7 machines along with a 98 percent payout dollar carousel. We've still got your own favorites, too, including KENO- with a new ONE MILLION DOLLAR jackpot-along with blackjack, craps, poker, Caribbean Stud and Let It Ride. And our poker room offers some of the best action on the Strip!



Make Your Reservation Request Today





#!/usr/bin/perl ############################################################## # # # MultiHTML 1.9 # # # ############################################################## # # # JCS Web Works # # www.jcserv.net # # scripts@jcserv.net # # # # Copyright (c)199-2000 Josh's Computer Services # # All Rights Reserved # # # # This program does not need any editing. # # All settings are done from the SSI command. # # More information can be found in the Read Me.txt file. # # # ############################################################## #Allowed File Extensions: $allowed_files = "htm,html,shtml,shtm"; #MultiHTML 9.1 will only use files with the above extensions. print "Content-type: text/html\n\n"; @allowed = split /,/, $allowed_files; foreach (@allowed) { $_ .= "\n"; } use CGI qw(:standard); $cgi=new CGI; $multi=$cgi->param("multi"); foreach $line (@allowed) { chomp($line); if ($multi =~ /$line/i) { &print; exit; } } print "
Merge HTML Error: Unallowed Merge file extension.
\n"; sub print { print "\n\n\n"; open(FILE, "$multi") or die (print "
Merge HTML Error: Multi file not found.
\n"); @files=; close(FILE); foreach $line (@files) { print $line; } }