Ver Mensaje Individual
  #2 (permalink)  
Antiguo 31/07/2007, 20:53
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: PHP + PostgreSQL + ARCHIVOS(jpg,png,pdf,..)

Lo que tienes que hacer por decir si lo quieres poner en una tabla es asi:
Código HTML:
<table>
      <tr>
             <th>Codigo</th>
             <th>Nombre</th>
             <th>Imagen</th>
      </tr>
      <tr>
           <td>1</td>
           <td>Ejemplo</td>
           <td><img src="pagina.php?id=1" border="0" /></td>
      </tr>
</table> 
Saludos.