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

Que tal?

A ver si pueden ayudarme...

Tengo un dato obtenido de un combobox utilizando JAVASCRIPT. Este dato, lo tengo que introducir en una BD.

Por ahora e investigando un poco... obtuve esto:

Código:
<script type="text/javascript">
function getDataServer(url, vars){
     var xml = null;
     try{
         xml = new ActiveXObject("Microsoft.XMLHTTP");
     }catch(expeption){
         xml = new XMLHttpRequest();
     }
     xml.open("GET",url + vars, false);
     xml.send(null);
     if(xml.status == 404) alert("Url no valida");
     return xml.responseText;
}
</script>

<script type="text/javascript">
function inserta(id){
    var error = getDataServer(id);
    if(error){
        alert(error);
    }
    else{

    }
}
</script>
Pero el tema es que mi script JAVASCRIPT es el siguiente:

Código:
function capturarNumero(){
        var numero = document.getElementById("numero").value;
        var maxUser = <?php echo $maxUser; ?>;
        
        if ( typeof( window[ 'arrayLocations' ] ) == "undefined" ) {
                arrayLocations = new Array();
                }

        if (arrayLocations.length < maxUser - 1) {
               arrayLocations.push(ciudad);
                }
}
Necesito introducir el valor "numero" que es el contenido del combobox en la BD y me gustaria hacerlo en este script, directamente meter el dato desde aca.

¿Como lo hago? no tengo la menor idea!

Edito: En realidad, lo mejor seria enviar mas que solo eso de informacion. Que pasa si quiero introducir en la BD mas de un dato?

Última edición por sadzas; 20/05/2010 a las 12:27 Razón: Agregar informacion