Answers for "php file downloader"

PHP
1

download file in php

$filename = 'test.txt';

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($filename));
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pregma: public');
header('Content-Length: '. filesize($filename));
readfile($filename);
exit();
Posted by: Guest on December-02-2021
-1

php download script

<?php
/*Actual filename = 'attachment.zip' (Unknown to the viewers).
When downloaded to be saved as 'mydownload.zip'.
*/
$filename='mydownload.zip';
@header("Content-type: application/zip");
@header("Content-Disposition: attachment; filename=$filename");
echo file_get_contents('attachment.zip');
?>
Posted by: Guest on July-20-2020

Browse Popular Code Answers by Language