vote up 0 vote down star

What is the easiest way to turn a mysql result variable into a multidimensional array in php?

Thanks

flag

2 Answers

vote up 1 vote down check

if you happen to be using the mysqli extension and php 5.3, you could use http://us2.php.net/manual/en/mysqli-result.fetch-all.php

link|flag
vote up 8 vote down

Run mysql_fetch_assoc in a loop.

while ($row = mysql_fetch_assoc($result)) {
    $table[] = $row;
}

print_r($table);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.