<?php
include "globals.php";
if ( $ir['level'] < 5 ) {
echo 'You cannot enter this page till your level 5.';
die($h->endpage());
}
switch($_GET['step'])
{
case 'index':
casino_index();
break;
default:
casino_index();
break;
}
function casino_index()
{
global $db,$ir,$c,$userid,$h;
$tresder = (int) (rand(100,999));
echo "<table><tr><td><center>
Welcome to the __________ casino. Take a look around and see if there is anything you would like to play.
You have {$ir['casinotokens']} casino tokens.
[url='slotsmachine.php?']> Slots[/url]
[url='arcade.php']> Arcade[/url]
[url='lucky.php']> Lucky Boxes[/url]
[url='slots.php']> 7's and Stripes Slots[/url]
[url='roulette.php']> Roulette[/url]</td>
</tr></table>";
}
$h->endpage();
?>