code:
http.send ("numTelefone=000000"+"name=abcdefgh");
That won't work, since "a"+"b" simply gives "ab". POST-values should be separated with a & sign, so that line should be:
code:
http.send ("numTelefone=000000&name=abcdefgh");
EDIT: You don't need to open IE for this, the XMLHTTP object is made for this kind of situations!
Don't forget to create a onstatuschange event!
code:
http.onreadystatechange = function() {
if(http.readyState==4) {
if(http.status == 200){
//worked
Debug("Yay! Success! Here's the returned HTML:");
Debug.Trace(html.responseText);
}else{
//error
Debug.Trace("Crap, something f*cked it up... You're sure you're not trying to run this on a Gameboy?");
}
}
}