Bonjour cela fais deux que j'essaye d'afficher du texte d'un fichier php distant mais aucun moyen :s Voici les fichiers :

Un bouton d'une page html appel la fonction RecupererXML() le prototype utilisé est : prototype.js 1.5.0 (69 Ko)
Voici la page html :

<html>
<head>
<script type="text/javascript" src="js/prototype.js"></script>
<script type="text/javascript" src="js/gadget.js"></script>
</head>
<body>
<p>
<input name="nomActivite" type="text" />
</p>
<p>
<input type="button" name="BtnRecup" value="Recevoir" onclick="RecupererXML()" />
</p>
</body>
</html>
Le code php :
<?php
header('Content-Type: text/html; charset: UTF-8');
echo 'Hello World!';
?>
Le fichier gadget.js
function RecupererXML() {
alert("Chargement...") ;
var xhr = new Ajax.Request("http://mickatronic.e3b.org/nomactivite.php",
{
method:"get",
onComplete:gestionReponse()
}
);
}

function gestionReponse(xhr)
{
alert("ca passe !") ;
alert(xhr.responseText) ;
}
Et là le problème et que l'alert xhr.responseText n'affiche rien :s j'ai tester alert(xhr) sans résultat non plus :s.

Si vous avez la réponse à mon problème merci d'avance