I use $result_set = mysql_query($query)
to get a set of rows, and then I can use mysql_fetch_array($result_set)
to access each value of column in a row, but each element inside is a column value of one row.
I want to get the result as an array from $result_set so that each element of array is an ENTIRE row, so I can add or remove elements inside. Is there such function?
Thanks.