Quote:
Originally Posted by stangger5
Try this,,
edit the casino.php file..
Find:
Code:
$result = $db->query_read("SELECT * FROM casino_games ORDER BY gamename");
while ($row = $db->fetch_array($result))
And replace with this
Code:
$result = $db->query_read("SELECT * FROM casino_games WHERE active = 1 ORDER BY gamename");
while ($row = $db->fetch_array($result))
|
I have already this problem
Thank Andrew for the update !