PHP Split associative arrays into individual variables?

I remember doing this about a year ago, but I don't remember the function. After calling mysql_fetch_array(...) there was a function I could call on it's result.

For example, say I have a sample table with 2 columns, ColID and StrData. After calling a query, and getting it's result and then a row, I could call some function on the associative array that is the row and then there'd be variables $ColID and $StrData.
 
Back
Top