If you hav an array of data and want to serialize it, I would recommend you use JSON. On Javascript you can do:
JSON.stringify(data);
On PHP you can do:
json_encode($data);
You'll obtain an string representing the array that can be easily parsed anywhere else. Check out: