|    
			
				09/07/2008, 05:23
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: septiembre-2004 
						Mensajes: 23
					 Antigüedad: 21 años, 1 mes Puntos: 0 |  | 
  |  Respuesta: Ver datos concretos de un combo  
  El ejemplo del link que me has dado no funciona.. tengo este otro con una funcion en js pero me devuelve el value.. ¿como se puede ver el text? no puede ser tan dificil .. 
 <?php
 print_r($_POST);
 ?>
 <html>
 <head><title>Ejemplo</title></head>
 <body><center>
 <FORM NAME="formmeses" action="formulario2.php" method="post">
 <SELECT NAME ="meses">
 <OPTION VALUE = "enero">Enero</OPTION>
 <OPTION VALUE = "febrero">Febrero</OPTION>
 <OPTION VALUE = "marzo" SELECTED>Marzo</OPTION>
 <OPTION VALUE = "abril">Abril</OPTION>
 <OPTION VALUE = "mayo">Mayo</OPTION>
 </SELECT>
 <br><br><br><a href="#" onClick="Enviar()">Web del mes</a>
 </FORM>
 </center></body>
 </html>
 <script language="javascript">
 function Enviar(){
 document.formmeses.submit();
 }
 </script>
     |