RE: [PHP-DB] Serialize...Unserialize

2003-03-04 Thread Hutchins, Richard
PM > To: Hutchins, Richard > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP-DB] Serialize...Unserialize > > > Hutchins, Richard wrote: > > >I have an array of values I want to store in a MySQL db in a > column called > >readBy of type TEXT. I want to take that arra

Re: [PHP-DB] Serialize...Unserialize

2003-03-04 Thread Gerard Samuel
Hutchins, Richard wrote: I have an array of values I want to store in a MySQL db in a column called readBy of type TEXT. I want to take that array and serialize it then insert it into the db. No big deal. When I query the db and get the value from the readBy column, I know I have to unserialize it

[PHP-DB] Serialize...Unserialize

2003-03-04 Thread Hutchins, Richard
I have an array of values I want to store in a MySQL db in a column called readBy of type TEXT. I want to take that array and serialize it then insert it into the db. No big deal. When I query the db and get the value from the readBy column, I know I have to unserialize it. Again, no big deal. My