Can you do something like
var params:Object = new Object();
params.name=myNameVar;
params.hobbies=myArrayVar;
service.send(params);
Seems on the PHP end it just takes the last value in the hobbies
array. When I view this in service capture, it shows
name='Rick'
hobbies='needlework'
hobbies='curling'
hobbies=golf'
and doing var_dump($_POST)
you just see
array(2) {
["namel"]=>
string(4) "Rick"
["hobbies"]=>
string(4) "golf"
}
Only option to convert array to csv and convert that string back to
array on php's end?