N
nick
Is it possible to do the following? (note this is more of a curiosity
thing than problem solving )
var parameters = 'b=3&d=4';
http_request = new ActiveXObject("Msxml2.XMLHTTP");
http_request.open('POST', 'index.php?a=1', true);
http_request.setRequestHeader("Content-type",
"application/x-www-form-urlencoded");
http_request.setRequestHeader("Content-length", parameters.length);
http_request.setRequestHeader("Connection", "close");
http_request.send(parameters);
thing than problem solving )
var parameters = 'b=3&d=4';
http_request = new ActiveXObject("Msxml2.XMLHTTP");
http_request.open('POST', 'index.php?a=1', true);
http_request.setRequestHeader("Content-type",
"application/x-www-form-urlencoded");
http_request.setRequestHeader("Content-length", parameters.length);
http_request.setRequestHeader("Connection", "close");
http_request.send(parameters);