![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
19/09/2006, 11:48
|
| | Fecha de Ingreso: noviembre-2005
Mensajes: 8
Antigüedad: 19 años, 2 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']);
?> |