quote:
Originally posted by roflmao456
xmlhttp.setRequestHeader("status",status);
xmlhttp.send();
er you're susposed to send the POST string as the param to send();
setRequestHeader sets http headers, like user-agent and Content-type
so you should do something like
code:
xmlhttp.send("status=" + encodeURIComponent(status))