Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/09/2006, 11:48
donfido
 
Fecha de Ingreso: noviembre-2005
Mensajes: 8
Antigüedad: 18 años, 5 meses
Puntos: 0
me ha pasado.. cuando se graban con el mismo nombre

la solucion que yo encontre:

en el source de la imagen:

<img src="showimage.php?imagen=mini.jpg">

y showimage.php:

<?php

header("Content-Type: image/jpeg");
header( "Expires: Mon, 20 Dec 1998 01:00:00 GMT" );
header( "Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT" );
header( "Cache-Control: no-cache, must-revalidate" );
header( "Pragma: no-cache" );

@readfile($_GET['imagen']);

?>