I have a result set of data that I want to write to an array in php. Here is my sample data:
**Name** **Abbrev** Mike M Tom T Jim J
You will need to create a two dimensional array to store more than one value.
Each row in your result set is already an array, so it will need to be added to your variable as an array.
array_push($values, array('name', 'abbreviation'));