PHP interesse |
|
Hallo, ik heb de volgende code:
var xmlhttp = null;
if(window.XMLHttpRequest){
xmlhttp = new XMLHttpRequest();
}else{
try{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}catch(e){
window.alert("Uw browser ondersteunt het XMLHttpRequest object niet!");
}
}
function check_input(info) {
xmlhttp.open("GET", "http://localhost/cpanel/check.php?name='+info.name+'&value='+info.value", true);
xmlhttp.send('');
window.alert(xmlhttp.responseText);
}
var xmlhttp = null; if(window.XMLHttpRequest){ xmlhttp = new XMLHttpRequest(); }else{ try{ xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); }catch(e){ window.alert("Uw browser ondersteunt het XMLHttpRequest object niet!"); } } function check_input(info) { xmlhttp.open("GET", "http://localhost/cpanel/check.php?name='+info.name+'&value='+info.value", true); xmlhttp.send(''); window.alert(xmlhttp.responseText); }
als ik de functie nu aanroep, krijg ik in de alert niks te zien, terwijl er wel wat in check.php staat, weet iemand hoe ik dit kan oplossen?
|