Quote:
Originally Posted by sandt38
For the video poker i get the following errors:
Line 151-71 in the casino/vidpok_redeal.php file reads:
line 186-8 reads:
|
There is a little error in there
This:
Code:
while($row=mysql_fetch_array($result)) {
should be this:
Code:
while($row=$db->fetch_array($result)) {
Which
might solve that, otherwise I have to do a little more digging into it.