Ver Mensaje Individual
  #9 (permalink)  
Antiguo 28/08/2008, 09:56
jrodriguez30
 
Fecha de Ingreso: abril-2008
Mensajes: 151
Antigüedad: 16 años, 11 meses
Puntos: 0
Respuesta: variables javascript

<script language="javascript">
function datosTextos()
{
col = document.formulario.und.length;
und = document.formulario.und;//array con todos los und
cant = document.formulario.cant;//array con todos los cant
for(i=0;i<col;i++)
{
if ((und[i].value != "") && (cant[i].value != ""))
{
window.location = "archivo.php?undvalor=" + escape(und[i]);
$und_ = $_GET["undvalor"]
}
}
}
</script>
No me parece... porq necesito obtener el valor y automaticamente ingresarlo a la base de datos.... no c si estara bn?