이전 과제: https://velog.io/@azurp158/8주차-과제WEB
// 이전 read.php 일부
<div>
<p><a href="./file/upload/<?php echo $row['file'];?>"> <?php echo $row['file'];?> 다운하기</a></p>
</div>
// read.php 일부
<div>
<p><a href="download.php?file=<?php echo $row['file'];?>"> <?php echo $row['file'];?> 다운하기</a></p>
</div>
//download.php
<?php
$file = $_GET['file'];
$filesize = filesize($file);
$filedir = "./file/upload/".$file;
header('Content-Type: application/x-octetstream');
header('Content-Length: '.filesize($filedir));
header('Content-Disposition: attachment; filename='.$file);
header('Content-Transfer-Encoding: binary');
$fp = fopen($filedir, "r");
fpassthru($fp);
fclose($fp);
?>