Esto es lo que tengo hasta ahora:
Código:
function capturarNumero(){
var numero = document.getElementById("numero").value;
getDataServer(test.php, numero);
}
function getDataServer(url, vars)
{
var xml = null;
try {
xml = new ActiveXObject("Microsoft.XMLHTTP");
} catch(expeption) {
xml = new XMLHttpRequest();
}
xml.open("GET",test.php, true);
xml.send(null);
if(xml.status == 404) alert("Url no valida");
return xml.responseText;
}
pero no me funciona...
la idea es que la variable numero llegue a la pagina test.php para poder introducir el dato en la BD.