Here is the code for pulling the data for my array
print_r() is mostly for debugging. If you want to print it in that format, loop through the array, and print the elements out.
print_r()
foreach($data as $d){ foreach($d as $v){ echo $v."\n"; } }