Whats a simple method of dynamically extracting each row of a SELECT result set into a two dimensional array, using the row number as the index, and the column numbers or names as the 2nd dimension.
echo $table[0]['user'];
echo $table[1]['user'];
So the above would return the contents of the 'user' column from the first and second row respectively of the result set.
I know there are some great classes (ie. ADOdb and ezSQL) that get this and more done, but I need to minimize my code as well as learn the concept.
The current project I'm using this for utilizes Unified ODBC functions to interface with an Access database and I'm wondering where I should go after executing the SELECT query, which should return several rows.
This has been bugging me for quite a while and I just can't seem to grasp how its done. Any help would be great.