我需要将一个变量发送到php服务器并将其写入文本文件,我的PHP代码工作正常它创建一个文件并保存。但我似乎并没有连接服务器
继承我使用的动作脚本
package
{
import flash.display.*;
import flash.net.URLRequest;
import flash.net.sendToURL;
public class SendToPhp extends MovieClip
{
private var stringy:String = "Im doing this!";
//private var vote:int = 1;
public function SendToPhp()
{
trace("hi");
var requestt:URLRequest = new URLRequest("http://phphost.web44.net/tsty.php?stringy="+stringy);
sendToURL(requestt);
}
}
}
代码运行没有错误;它只是打开一个空白闪光并跟踪"嗨"
我的PHP代码(工作得很好):
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p>
<?php
$stringy = $_REQUEST['stringy'];
$file = "data.txt";
$fp = fopen($file, "a") or die("Couldn't open $file for login!");
fwrite($fp, $stringy) or die("Couldn't open new page!");
fclose($fp);
echo "Proceed to newly open page.";
?>
</p>
</body>
</html>
并且我希望php代码处理我通过flash发送给他的数据而不打开网页
请大家知道可能出错了什么? 以及如何知道闪光灯是否连接正确?