Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/05/2010, 14:01
sadzas
 
Fecha de Ingreso: junio-2008
Mensajes: 137
Antigüedad: 16 años, 5 meses
Puntos: 0
Respuesta: Javascript - Ajax - Insertar en BD

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.