Todays,
we learn about how to download any file,image,zip etc using php script.here we can provide the a small file download code.Just you have to provide the file path and download it.
Script for Download :
we learn about how to download any file,image,zip etc using php script.here we can provide the a small file download code.Just you have to provide the file path and download it.
Script for Download :
<?php
//your file name add
$f="test.php";
function force_download($file)
{
//provide your directory path
$dir="";
if ((isset($file))&&(file_exists($dir.$file))) {
header("Content-type: application/force-download");
header('Content-Disposition: inline; filename="' . $dir.$file . '"');
header("Content-Transfer-Encoding: Binary");
header("Content-length: ".filesize($dir.$file));
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' . $file . '"');
readfile("$dir$file");
} else {
echo "No file selected";
} //end if
}//end function
echo force_download($f);
?>

nice script
ReplyDeletenice
ReplyDelete