Ver Mensaje Individual
  #14 (permalink)  
Antiguo 30/10/2008, 16:54
Avatar de jaronu
jaronu
 
Fecha de Ingreso: febrero-2008
Mensajes: 2.183
Antigüedad: 16 años, 2 meses
Puntos: 52
Respuesta: No se muestra la imagen que guardé en la BD

entonces cambia esta funcion

Código PHP:

function display_book_details($book)
{
// display all details about this book
if (is_array($book))
{
echo 
"<table><tr>";
//display the picture if there is one
if (@file_exists("http://www.forosdelweb.com/images/".($book["sku"])))
{
$size GetImageSize("http://www.forosdelweb.com/images/".$book["sku"]);
if(
$size[0]>&& $size[1]>0)
$book $book['sku'].".jpg";
echo 
"<td><img src=\"http://www.forosdelweb.com/images/$book\" border=0 ".$size[3]."></td>";