Cita:
<?
$id = $_GET['id'];
$enlace = "images/".$id."";
header ("Content-Disposition: attachment; filename=".$id);
header ("Content-Type: image/jpg");
header ("Content-Length: ".filesize($enlace));
readfile($enlace);
?>
$id = $_GET['id'];
$enlace = "images/".$id."";
header ("Content-Disposition: attachment; filename=".$id);
header ("Content-Type: image/jpg");
header ("Content-Length: ".filesize($enlace));
readfile($enlace);
?>
Cita:
Pero me sale el error de los catacteres, he probado con otros script y siempre me sale lo de los caracteres. ¿Como puedo solucionarlo? <a href="imagen.php?id=1.jpg"> Descargar la imagen</a>