Untitled
unknown
plain_text
2 years ago
407 B
6
Indexable
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' . basename($file) . '"');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
// Read the file and output it to the browser
readfile($file);Editor is loading...
Leave a Comment