Quote:
Originally Posted by Mark.B
I seem to be struggling to make it load....casino.php?do=texasholdem is just going to the main casino index, as if it doesn't recognise the location.
I'm still playing about to see if there's anything obvious I've missed...
|
Got it...
casino.php is missing this....
Find:
Code:
else if($_GET['do']=='slots')
{
require_once('casino/slots.php');
exit();
}
Add after....
Code:
else if($_GET['do']=='texasholdem')
{
require_once('casino/texasholdem.php');
exit();
}