PHP
<?php
//$file (bzw.../downloads/$datei beim Aufruf der Funktion) gibt Pfad und Name der Datei zum Download an;
//$name (bzw. $downfile im Aufruf der Funktion) ist Name unter dem gespeichert werden soll
function download($file , $name) {
$size = filesize($file);
header("Content-type: application/octet-stream");
header("Content-disposition: attachment; filename=".$name);
header("Content-Length: ".$size);
header("Pragma: no-cache");
header("Expires: 0");
readfile($file);
}
download("../downloads/$datei","$downfile");
?>
Alles anzeigen