Is there any way to speed things up? Change to a different loop type? Some other technique for pulling the data out of the database faster? My only requirement is that the array format remain unchanged (yes, associative values are important).
Here's the code, which seems awfully simple:
for($i=0; $i < $num_results; $i++) { $search_results[$i] = mysql_fetch_array($result, MYSQL_ASSOC); }
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php