When I send a request from a Linden Scripting Language script to PHP with LlHTTPRequest I don’t get the values in PHP:
Example: ( LSL )
if(group_invite == "yes")
{
list agents = llParseString2List(this_agent_name, [" "], []);
string params = llDumpList2String([
"firstname=" + llList2String(agents, 0),
"lastname=" + llList2String(agents, 1)],
"&");
llHTTPRequest(
"http://mysite/post-page.php",
[HTTP_METHOD,"POST"],
params);
}
I never get firstname
and lastname
values.