您好,我正在尝试制作一个简单的游戏,但我需要服务器,所以我开始在 flash 上学习套接字,但是当我使用 get 参数将会话发送到 php 页面时,它就像页面没有 get 参数一样,就像我刚刚进入只是普通页面(例如:index.php?something=something2 并且它连接到 index.php 没有什么东西)
这就是我的意思:
http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol
我发送的portocol:
mysocket.writeUTF(" GET /index.php?act=getip HTTP/1.1\r\n Host: 192.168.1.100\r\n\r\n");
我的 php 页面:
<?
include 'all.php';//mysql connect, escaping all get/post params
if($_GET["act"] == 'getip'){
die($_SERVER["REMOTE_ADDR"]);//this must be printed on the screen
}
print 'asd';//<-------------------- i get this on connecting
?>