Yeah Andrew, that worked. I also wound up with an unexpected error in line 152 after resolving the error in line 151 which was easily remedied by removing the first "&" in the line (line 152 I mean). But everything looks good right now.
It was:
Quote:
while($row=$db->fetch_array($result)) {
$f[$i] = $row['card'] % 13;
|
But the repaired code is:
Quote:
while($row=$db->fetch_array($result)) {
nbsp;$f[$i] = $row['card'] % 13;
|
Works great too, in my first hand I got a full house, Jacks over 7s.