I have this script which connects to a PHP script which then connects to a data base. the script looks as such
toWebPage(string params)
{
params += "&FromSL=true";
string tst = "";
if(DEBUG)
{
tst = "/tst";
}
llDebugSay("HTTP REQUEST: " + URL + PRODUCTNAME + tst+"/"+controller+".php");
llDebugSay("HTTP REQUEST: " + params);
myRequest = llHTTPRequest(URL + PRODUCTNAME + tst + "/"+controller+".php",
[HTTP_METHOD, "POST",
HTTP_MIMETYPE, "application/x-www-form-urlencoded"],
params);
}
The method runs perfect as I have been usi