Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/10/2007, 13:39
Avatar de @ndreX!
@ndreX!
 
Fecha de Ingreso: abril-2007
Mensajes: 161
Antigüedad: 17 años, 10 meses
Puntos: 4
Re: Problema con los campos Blob

Y no has tratado con algo así:

Código PHP:
<?
        
//CONEXION y CONSULTA A BD =)

    
$image imagecreatefromstring($row['img_blob']);
    
header("Content-type: image/jpeg");
    
imagejpeg($image);
?>
Saludos