Hallo Leute,
Ich versuche derzeit auch nebenbei eine PHP Download file einzubauen, habe bisschen gesucht und im google auf diesen Code zugestoßen:
Kann ich diesen Code einfach in meinem PHP Code dranhängen ?
Und wie schaut dann der HTML Code aus ?
Lg
Ich versuche derzeit auch nebenbei eine PHP Download file einzubauen, habe bisschen gesucht und im google auf diesen Code zugestoßen:
Code:
//set the time out
set_time_limit(0);
//path to the file
$file_path='files/'.$_REQUEST['filename'];
//Call the download function with file path,file name and file type
output_file($file_path, ''.$_GET['filename'].'', 'text/plain');
/* Figure out the MIME type */
$known_mime_types=array(
"pdf" => "application/pdf",
"txt" => "text/plain",
"html" => "text/html",
"htm" => "text/html",
"exe" => "application/octet-stream",
"zip" => "application/zip",
"doc" => "application/msword",
"xls" => "application/vnd.ms-excel",
"ppt" => "application/vnd.ms-powerpoint",
"gif" => "image/gif",
"png" => "image/png",
"jpeg"=> "image/jpg",
"jpg" => "image/jpg",
"php" => "text/plain"
);
Kann ich diesen Code einfach in meinem PHP Code dranhängen ?
Und wie schaut dann der HTML Code aus ?
Lg