is there any known limitation on serialize? or does it depend on what type of field i save serialize data in?
Vincent wrote:
Check out the manual.
Serialize takes php variables and creates a string that represents the content of the variable so you can store it anywhere you like.
For example, you can take a php array and "serialize" it into a single string that you can store in a text field in a database.
Lateron you can read the string from the database and turn it back into a php array using unserialize()