10/07/2008, 03:07
|
| | Fecha de Ingreso: septiembre-2004
Mensajes: 23
Antigüedad: 20 años, 4 meses Puntos: 0 | |
Respuesta: Ver datos concretos de un combo Pues en este modelo que he aplicado tu ejemplo no funciona, es más el evento onchage ni siquiera se ejecuta , imagino que algo dentro el onchange no es correcto..
formulario.php
<?php
print_r($_POST);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<form name= "mio">
<select name="elselect" onchange="formulario.php?value= + this.value + &text=' + this.options[this.selectedIndex].text">
<option value="123">yahoo</option>
<option value="456">google</option>
</select>
</form>
</body>
</html> |