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:
Pero el tema es que mi script JAVASCRIPT es el siguiente:<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>
Código:
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.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); } }
¿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?