Re: [PHP] Storing Arrays in a database

2005-03-24 Thread John Nichel
Joe Harman wrote: Hey, I was curious if anyone here stores arrays in MySQL... and how r u doing this... are you converting the values to a delimited string or is there another way? Thanks Joe http://us4.php.net/serialize -- John C. Nichel ÜberGeek KegWorks.com 716.856.9675 [EMAIL PROTECTED] --

Re: [PHP] Storing Arrays in a database

2005-03-24 Thread [EMAIL PROTECTED]
check serialize() and unserialize() in manual. implode() and explode() functions too. -afan Joe Harman wrote: Hey, I was curious if anyone here stores arrays in MySQL... and how r u doing this... are you converting the values to a delimited string or is there another way? Thanks Joe -- PHP G

RE: [PHP] Storing Arrays in a database

2005-03-24 Thread Chris W. Parker
Joe Harman on Thursday, March 24, 2005 12:15 PM said: > I was curious if anyone here stores arrays in MySQL... and how r u > doing this... are you converting the values to a delimited string > or is there another way? http://php.net/serialize and http://php.net/