Re: [PHP] quick array questions

2001-03-23 Thread Aaron Tuller
see: http://www.php.net/manual/en/function.serialize.php you could store a unique id in your URL that refers to the ow in your DB where the array is stored. -aaron At 9:04 PM -0500 3/23/01, Jaxon wrote: >can an array be stored in a database field? >E.g. make a few runtime settings for a page,

Re: [PHP] quick array questions

2001-03-23 Thread Michael Hall
Yes it can. Try serialize() and unserialize() functions. Mick On Fri, 23 Mar 2001, Jaxon wrote: > > can an array be stored in a database field? > E.g. make a few runtime settings for a page, store the settings as an array > in a field, and use that array to make some runtime settings? > > F