Simple question. lets say I run the following:
$results = mysql_query("SELECT * FROM table");
How can I load the mysql results array into a PHP array without doing a while loop? Example:
$mysql_results = array();
$results = mysql_query("SELECT * FROM table");
$mysql_results = mysql_load_all_results_into_array($results);
Thanks!