Ver Mensaje Individual
  #10 (permalink)  
Antiguo 16/06/2009, 07:32
Avatar de gioramies
gioramies
 
Fecha de Ingreso: febrero-2008
Ubicación: Colombia
Mensajes: 217
Antigüedad: 16 años, 8 meses
Puntos: 14
Respuesta: problema que no puedo solucionar

Cita:
Iniciado por gjx2 Ver Mensaje
Código:
<?php 

            $sql_capacidad = "SELECT * FROM miusb_capacidad_precio group by capacidad";  
            $rpta_capacidad = mysql_query($sql_capacidad) or die(mysql_error()); 
            $i = 0; 
        ?> 
            <table width="216" border="1" cellspacing="0" cellpadding="2">     
              <tbody> 
                <tr> 
                <th>Capacidad</th> 
                <th>Precio</th> 
                </tr> 
         <?php while($capacidad = mysql_fetch_array($rpta_capacidad)):?> 
            <tr>  
              <td width="106"> 
              <input name="capacidad[<?=$i?>]" type="checkbox" class="objetoformulario" checked="checked" id="capacidad" value="<?=$capacidad['Capacidad'];?>"> 

              </td>  
               
              <td width="102"> 
                <input name="precio_usb_<?=$i;?>" type="text" class="objetoformulario" size="12"  value="<?="$".$capacidad["precio_usb"]?>"/></td>  
            </tr>  
         <?php  
                $i++; 
               endwhile;      
         ?>
		 </tbody>
		 </table>
Me refiero a las columnas de las tablas implicadas, la que se han mencionado.