Ok Danke!
Dann werd ich es dreifach anbieten : )
Was ist 'proprietor'?
Link gibts ned aber Funktion : )
function get_Download($File) {
if(file_exists($File)) {
header("Content-Type: application/octet-stream");
header('Content-Length: '.filesize($File));
header('Content-Disposition: attachment; filename='.basename($File));
readfile($File);
} else {
header('Location: http://foo.com/?error404');
}
}