01/06/2006, 05:13
|
| | Fecha de Ingreso: abril-2006
Mensajes: 61
Antigüedad: 18 años, 8 meses Puntos: 0 | |
no me funciona Lo siento, pero no me funciona, no se donde esta el error
el cogigo es:
<form name="CA" method="post" id="CA" action="" >
<select name="Combo_CA" onchange="document.CA.submit();">
<option value="">Seleccione Comunidad Autónoma</option>
<?php
while($fila = mysql_fetch_array($result)){
?>
<option value="<?php echo $fila["ComunidadAutonoma"] ?>" <?php if (isset($_POST["Combo_CA"])){
if ($_POST["Combo_CA"]== $fila["ComunidadAutonoma"]) echo "selected"; }?>><?php echo $fila["ComunidadAutonoma"] ?></option>
<?php
}
mysql_free_result($result);
?>
</select>
</TD>
<td> <input name="" type="button" onClick='document.getElementById("CA").selectedInd ex=document.getElementById("CA").selectedIndex-1;'></td>
</tr>
</form>
gracias por contestar tan rapido |