I don't see why you should store an array, but if you want to, here's how you store an array into one field (the field should be a [var]char of sufficient length or a text/blob field):
$myarr = array(1,2,3);
$string = implode('|',$myarr);
now store $string into the designated field. Then when you need to fetch the information, you simply:
$myarr = explode('|',$string);
and there you go.