lHttpRequestについて

sekki Sautereau

2008年08月18日 11:27


llHttpRequestでphp側にデータを送ることができなくて困っています。

http://rpgstats.com/wiki/index.php?title=ExamplellHTTPRequest
のスクリプトとPHPソース
そのまま使っているのですができません(
もちろん 自分のサーバーにURLは変更しましたが)


LSL側
Code:

key requestid; // just to check if we're getting the result we've asked for; all scripts in the same object get the same replies

default
{
touch_start(integer number)
{
requestid = llHTTPRequest("http://my.server.com/my-script.php",
[HTTP_METHOD, "POST",
HTTP_MIMETYPE, "application/x-www-form-urlencoded"],
"parameter1=hello¶meter2=world");
}

http_response(key request_id, integer status, list metadata, string body)
{
if (request_id == requestid)
llWhisper(0, "Web server said: " + body);
}
}




PHP側
Code:

スクリプト関連