GITLAB
LeClubInfo
/
crep
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
fe74dec7a35d51c6847634428830a9a9dc2be0a6
Authored by
Jean Wasilewski
10 years ago
1 parent
51dfbe8d
No need to use assoc
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
checkCreds.php
Inline
Side-by-side
checkCreds.php
Wrap text
Show/Hide comments
View file @
fe74dec
...
...
@@ -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;
...
...