/ Published in: PHP
Simple but utilitarian function returns a numeric array of associative arrays containing an entire result set.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php /* mysql_fetch_all Absurdly simple but utilitarian function returns a numeric array of associative arrays containing an entire result set. */ function mysql_fetch_all($result) { return $all; } ?>