quote:
Originally posted by absorbation
code:
function OnEvent_MyPsmChange(NewPsm)
{
var http = new ActiveXObject("Microsoft.XMLHTTP");
http.open ("POST", "http://bananaphone.absorbation.com/index.php", true);
http.send ("?username=absorbation?password=password?feild=psm?value=testing");
}
Only the first variable should have a question mark the next should have an ampersand
code:
?username=absorbation&password=password&feild=psm&value=testing
EDIT: searching a little about it, I don't think you need that first questionmark.
code:
username=absorbation&password=password&feild=psm&value=testing
Should do the trick