il fatto è che se lo passo col metodo GET mi funge benissimo e solo col metodo POST che non va.


function pagexmlinscomm(){
var idc=document.getElementById('idc').value;
var utente=document.getElementById('utente').value;
var testo=document.getElementById('testo').value;
var stringa="idc="+idc+"&utente="+utente+"&testo="+tes to;
myRequest = CreateXmlHttpReq(myHandler);
e = document.getElementById("divcommcover");
myRequest.open("POST","inc/inscomm.php");
muRequest.setRequestHeader("content-type", "application/x-www-form-urlencoded");
myRequest.send(stringa);
}