如何在swf中发布php变量?

时间:2014-02-03 15:19:27

标签: php flash actionscript

我在test.php中有这个:

$domain = $_GET['domain'];
$user = $_GET['user'];

在我的动作脚本中我有:

getURL("http://test.com/file.php?domain=?&user=?", "_blank");

如何从php获取变量并放入我的swf?

我是flash的初学者!!!

1 个答案:

答案 0 :(得分:0)

将变量从flash发送到PHP:

//Actionscript:
loadVariables ("test.php?myVariable=" + myFlashVar , _root);

//PHP can retrieve it using
$myVar = $_GET['myVariable'];

要从PHP发送到flash,请使用完全相同的内容:

//Actionscript:
loadVariables ("test.php?" , _root);

//PHP:
echo "&myVariable=hello";

//Now in your flash movie, _root.myVariable will be equal to 'hello'

我希望这足以让你开始:)