Commit fe74dec7a35d51c6847634428830a9a9dc2be0a6

Authored by Jean Wasilewski
1 parent 51dfbe8d

No need to use assoc

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
checkCreds.php
... ... @@ -17,7 +17,7 @@ $resultat = mysql_query($requete);
17 17 if (!$resultat)
18 18 die("Nop");
19 19  
20   -if($row = mysql_fetch_assoc($resultat))
  20 +if($row = mysql_fetch_row($resultat))
21 21 {
22 22 echo 'Yep';
23 23 $_SESSION["connected"]=true;
... ...