Download pdf on php

 Download PDF file on php

<!DOCTYPE html>
<html lang="en">
<head>
<title>Download PDF</title>
</head>
<body>
<center>
    <h2>download pdf file</h2>
    <p><b>Click below to download PDF</b></p>
    <a href="download.php?file=js" target="_vimal">Download PDF Now</a>
</center>
</body>
</html>


Download.php

<?php
$file = $_GET['file'] .".pdf" ;
header("content-disposition: attachment; filename=" .
    urlencode($file));

$fb = fopen($file, "r");

while(!feof($fb)){
    echo fread($fb, 8190);
    flush();
}

fclose($fb);

?>

Post a Comment

0 Comments