Nasıl actionscript içinde getURL yoluyla PHP ile etkileşim?

1 Cevap php
getURL('http://www.google.com',_blank);

Yukarıdaki google.com açabilir, ama nasıl localhost sunucu tarafında (PHP) verileri almak için?

1 Cevap

Ben bu öğretici bulundu

<?
$first="this";
$second = "that";

echo "myfirst=$first&mysecond=$second";
exit;
?>

Flash Actionscript:

var lvSend = new LoadVars();
var lvReceive = new LoadVars();
lvSend.SendAndLoad("www.domain.com/script.php",lvReceive,"POST");

lvReceive.onLoad = function(bSuccess) {
if(bSuccess == true) {
trace(this.myfirst);
trace(this.mysecond);
}
}