$ofile = "../../downpaper/paper/$p_id";
Header("Content-type: application/octet-stream");
Header("Content-Disposition: attachment; filename=$p_id");
Header("Content-Transfer-Encoding: binary");
Header("Content-length: ".filesize("$ofile"));
Header("Connection: close");
Header("Pragma: no-cache");
Header("Expires: 0");
readfile($ofile);
exit();
?>
Posted by 홍반장