Skip to content

Instantly share code, notes, and snippets.

@jasdeepkhalsa
Created March 28, 2013 17:09
Show Gist options
  • Select an option

  • Save jasdeepkhalsa/5265025 to your computer and use it in GitHub Desktop.

Select an option

Save jasdeepkhalsa/5265025 to your computer and use it in GitHub Desktop.
Return MySQL Data as an Associative Array
<?php
function mysql_fetch_all($result) {
while($row=mysql_fetch_assoc($result)) {
$return[] = $row;
}
return $return;
}
>?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment