Hi all,
How can I save to my mysql db an array from flash? I pass the array as a parameter to a php script. What I have to do next?
Hi all,
How can I save to my mysql db an array from flash? I pass the array as a parameter to a php script. What I have to do next?
Many options here, simplist is as follows:
http://php.net/manual/en/function.serialize.php - This will convert the array in a string, which can be unserialized later.