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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.