Look into the eval statement.
eval($string)
will evaluate $string as php code. So if you read your array string from the database and assign it to $array_string, something like this might work...
eval("\$array = $array_string");
I'm guessing on that syntax...look at the manual to be sure, but eval should do what you want...
---John Holmes...