Ver Mensaje Individual
  #8 (permalink)  
Antiguo 08/03/2012, 14:00
alekorn102
 
Fecha de Ingreso: junio-2011
Mensajes: 54
Antigüedad: 12 años, 10 meses
Puntos: 1
Respuesta: Problema con el option value

ya lo solucione me faltaba armar la estructura con el do

Código PHP:
Ver original
  1. echo '<table align="center"><tr><td height="29"><b>Producto:</b></td> <td height="29">
  2.                
  3.         <select name="producto[]" id="producto">
  4.         <option selected="selected">Seleccione Producto</option>';
  5.                                    
  6.         do{
  7.                   echo'<option value=" '.$row_Producto['nombre'].' ">'.$row_Producto['nombre'].'</option>';
  8.             }while
  9.         ($row_Producto = mysql_fetch_assoc($Producto));
  10.         echo '</select></td></tr>';