Skip to content

Instantly share code, notes, and snippets.

@isner
Created March 11, 2014 14:19
Show Gist options
  • Save isner/9486654 to your computer and use it in GitHub Desktop.
Save isner/9486654 to your computer and use it in GitHub Desktop.
Working with MySQL query results in PHP
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