Jump to content

Flash Send To PHP / Functions


johnsmith153

Recommended Posts

I want to perform an action in Flash, so it sends values to PHP

 

 

SendTheData = function(type,val,other){
SendData = new LoadVars();
SendData.type = val;
SendData.varName = other;
myData.send("http://www.url.com/page.php", SendData, "POST");
}

 

Is this the correct way? I may have got it all wrong to start to be honest.

 

If I then call SendTheData(name,jim,20)

I want "SendData.type = val" to pick up the 'type' value sent to the function and send so I can receive in PHP using $_POST['name'] - I think how I have done it it would receive $_POST['type']

 

SendData.varName = other;//but I want this to receive $_POST['varName'] = which I think is correct

 

Any ideas?

Link to comment
https://forums.phpfreaks.com/topic/128446-flash-send-to-php-functions/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.