How to Download Image , txt file or any file without save as or without open in php?

<?php

$file=$_GET[‘file’];//get the file name

//$file = ‘monkey.gif’;

if (file_exists($file)) {
header(‘Content-Description: File Transfer’);
header(‘Content-Type: application/octet-stream’);
header(‘Content-Disposition: attachment; filename=’.basename($file));
header(‘Content-Transfer-Encoding: binary’);
header(‘Expires: 0’);
header(‘Cache-Control: must-revalidate, post-check=0, pre-check=0’);
header(‘Pragma: public’);
header(‘Content-Length: ‘ . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>


Comments

3 responses to “How to Download Image , txt file or any file without save as or without open in php?”

  1. its working good for download any extension file. thanks a lot for help.

  2. This is Force-to-Download Method 🙂

Leave a Reply

Your email address will not be published. Required fields are marked *