Send JSON from Flash to PHP
- by vitto
Hi, I'm trying to send array of data from Flash to PHP to sending e-mail. I'd like to do that because I must change the php page everytime my form site changes because of client's choice.
My answer is, can I send an array of objects like this to php?
var message:Array = new Array ();
message.push ({field_name:"Name", value:"John Lennon"});…