Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/05/2010, 14:08
sadzas
 
Fecha de Ingreso: junio-2008
Mensajes: 137
Antigüedad: 16 años, 5 meses
Puntos: 0
AJAX - MySQL - Insertar datos.

Hice este Thread en JAVASCRIPT, pero tambien va aqui.

Tengo que insertar un valor de un combobox en una BD.

El valor ya lo tengo capturado con JAVASCRIPT, pero no se que hacer ahora. Esto es lo que tengo:

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 hace nada... ¿esta esto bien? necesito enviar la variable numero al fichero test.php.