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