Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Code:$filename="spcc.doc"; $path="C:\\"; header("Cache-Control: private",false); header('Content-Type: application/octet-stream'); header("Content-Type: image/jpeg"); header("Content-Type: application/pdf"); header("Content-Type: application/msword"); header("Content-Type: application/vnd.ms-excel"); //header('Content-Disposition: attachment; filename="'.$filename.'"'); header("Content-Transfer-Encoding: binary"); header('Content-Length: ' . filesize($path.$filename)); readfile($path.$filename) or die("cannot open file");
$filename="spcc.doc";
$path="C:\\";
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.$filename.'"');
header('Content-Length: ' . filesize($path.$filename));
readfile($path.$filename) or die("cannot open file");
$filename="spcc.doc";
$path="C:/";
header('Content-Type: application/msword');
header('Content-Length: ' . filesize($path.$filename));
readfile($path.$filename) or die("cannot open file");
<?PHP
$filename="spcc.doc";
$path="C:\\";
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.$filename.'"');
header('Content-Length: ' . filesize($path.$filename));
readfile($path.$filename) or die("cannot open file");
?>