Código PHP:
$enlace1 = "fichero";
header ("Content-Disposition: attachment; filename="."fichero");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($enlace1));
// se lee el archivo para que muestre la pantalla de descarga
readfile($enlace1);
Ayuda por favor!
Gracias
