Commit b3d7ea05a9d953299f098ae0c3dd1dcd887114af

Authored by Jean Wasilewski
1 parent f42e5a0f

Minor fix

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
checkCreds.php
... ... @@ -15,7 +15,7 @@ $resultat = mysql_query($requete);
15 15 if (!$resultat)
16 16 die("Nop");
17 17  
18   -if(row = mysql_fetch_assoc($resultat))
  18 +if($row = mysql_fetch_assoc($resultat))
19 19 echo 'Yep';
20 20 else
21 21 echo 'Nop';
... ...