NOTICE

파일 다운로드(download.php)

Date : 2011. 1. 5. 17:15 Category : Programming/PHP
<?
$Dir = "/Files/";
$FileName = 'abc.jpg';  // db랑 연동하든 말든
header("Content-Type: application/force-download"); //강제 다운로드
header("Content-Disposition: attachment; filename=".$FileName); // 저장할 파일이름 설정
readfile($Dir . $FileName); // 파일내용 읽어들이기
?>