Alguein em puede decir donde esta el error? este es el codigo
descarga.php
Código PHP:
<?php
$ruta = "documentos/";
$enlace = $ruta."/".$id;
header ("Content-Disposition: attachment; filename=".$id."\n\n");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($enlace));
readfile($enlace);
?>
Código HTML:
Ver original