I need to check to see if a score is a tie EXCEPT when the score is 0-0.
Here's my code, is it correct?
} elseif (($row[5] == $row[6]) && ($row[5] <> 0 && $row[6] <> 0)) {
elseif (($row[5] == $row[6]) && $row[5] != 0)
you dont need to check that both are equal to 0, since if both are equal, and one is equal to 0, then both are equal to 0
Actually, I modified the query to get the results to skip games where there is a 0-0 tie.
Thanks for taking time to reply.