Ver Mensaje Individual
  #48 (permalink)  
Antiguo 02/11/2008, 10:33
sopaetonto
(Desactivado)
 
Fecha de Ingreso: mayo-2008
Mensajes: 67
Antigüedad: 16 años
Puntos: 0
Respuesta: No se muestra la imagen que guardé en la BD

No entiendo por quie se enrriedan tanto si tan solo era hacer este code para mostrar sus imagenes de su bd .

Código PHP:
<?
while ($row mysql_fetch_array($result)) 

{
echo 
"<a href=\"http://www.miweb.com/catalogo/index.php?main_page=product_info&products_id=" $row["products_id"] . "\">
<img src=\"http://www.miweb.com/catalogo/images/" 
$row["products_image"] . "\" border=0 alt=\"" $row["products_name"] . "\"  width=\"100\" height=\"10%\">
</a><br><a href=\"http://www.miweb.com/catalogo/index.php?main_page=product_info&products_id=" 
$row["products_id"] . "\">".$row["products_name"]."</a><br><br>" ;
}

?>