Created
March 11, 2014 14:19
-
-
Save isner/9486654 to your computer and use it in GitHub Desktop.
Working with MySQL query results in PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while ($row = $result->fetch_assoc()) { | |
print_r($row); | |
echo $row['email']; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment