Ver Mensaje Individual
  #4 (permalink)  
Antiguo 24/06/2008, 08:52
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
Respuesta: problema al mostrar imagen dinamica

Prueba hacer esto:
Código PHP:
<?php 
$image 
"toro.gif";
if(!
file_exists$image ) ) {
       die( 
"La imagen $image no existe" );
}
header("Content-type: image/gif"); // or whatever 
readfile($image);
?>
Eso nos dirá si la ruta es correcta o no.

Saludos.