Rate this script:  I Love it  /   I Hate it

mysql_fetch_all


Code

function mysql_fetch_all($result) {
    $all = array();
    while ($all[] = mysql_fetch_assoc($result)) {}
    return $all;
}

 

 
mysql_fetch_all scripts | mysql_fetch_all snippet | mysql_fetch_all example | mysql_fetch_all tutorial | mysql_fetch_all code