Probleme ajax/php en server 2003

Fermé
zouhairo - 14 mars 2011 à 11:06
dariumis Messages postés 571 Date d'inscription mardi 16 mars 2010 Statut Membre Dernière intervention 18 avril 2018 - 14 mars 2011 à 13:30
Bonjour,

j'ai vraiment besoin d'aide

j'ai enfin fini mon site web sous win XP avec WAMP5 Version 1.4.4 comme serveur
le problème :
quand je met mon site sur le serveur 2003 avec la même version du WAMP tout marche bien sauf l'ajax
voici mon code ajax

------------------------------------

var xhr=null;
function getxhr()
{
if(window.XMLHttpRequest)
xhr=new XMLHttpRequest();
else if(window.ActiveXObject){
try
{
xhr=new ActiveXObject("Msxm12.XMLHTTP");
}
catch (e)
{
xhr=new ActiveXObject("Microsoft.XMLHTTP");
}
}
else
{
alert("ce navigateur ne supporte pas AJAX");
xhr=false;
}
}



une de mes fonctions :
function reovrirfill(idtoreovrir)
{



getxhr();
xhr.onreadystatechange=function(){
if(xhr.readyState == 1 || xhr.readyState == "loading")
{
document.getElementById('listfill').innerHTML="<div align=\"center\"> <img src='image/loading_2.gif' border='0' alt='running' /></div> ";
}
if(xhr.readyState==4 && xhr.status==200){
leselect= xhr.responseText;
document.getElementById('listfill').innerHTML=leselect;

}
}
xhr.open("POST","admin/listanneescoajax.php",true);
xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');



xhr.send("ovririd="+ idtoreovrir);

}


j'aimerais bien que vous m'aidiez le plus vite possible merci d'avance :)

A voir également:

1 réponse

dariumis Messages postés 571 Date d'inscription mardi 16 mars 2010 Statut Membre Dernière intervention 18 avril 2018 63
14 mars 2011 à 13:30
Salut, je pense qui faut mettre le resulltat de la fonction getXhr dans la variable xhr.

function reovrirfill(idtoreovrir)
{



var xhr=getxhr();
xhr.onreadystatechange=function(){
if(xhr.readyState == 1 || xhr.readyState == "loading")
{
document.getElementById('listfill').innerHTML="<div align=\"center\"> <img src='image/loading_2.gif' border='0' alt='running' /></div> ";
}
if(xhr.readyState==4 && xhr.status==200){
leselect= xhr.responseText;
document.getElementById('listfill').innerHTML=leselect;

}
}
xhr.open("POST","admin/listanneescoajax.php",true);
xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');



xhr.send("ovririd="+ idtoreovrir);

} 
0