mirror of
https://github.com/liftedpixel/lslscripts.git
synced 2026-08-14 09:02:50 +00:00
Delete Contact PHP script.lsl
This commit is contained in:
@@ -1,18 +0,0 @@
|
||||
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://liftedpixel.net/sldb/test_remote.php",
|
||||
[HTTP_METHOD, "POST",
|
||||
HTTP_MIMETYPE, "application/x-www-form-urlencoded"],
|
||||
"parameter1=something¶meter2=anotherthing");
|
||||
}
|
||||
|
||||
http_response(key request_id, integer status, list metadata, string body)
|
||||
{
|
||||
if (request_id == requestid)
|
||||
llWhisper(0, "Web server said: " + body);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user