페이지 접속시 파일 다운로드
$filename="파일이름.확장자"; //파일의 이름$file="./$filename"; //파일의 경로$filesize=filesize($file); //파일사이즈header("Content-type: file/unknown"); //Content-type은 파일에 따라 달라짐header("Content-Disposition: attachment;filename=$filename");header("Content-Description: PHP4 Generated Data"); if(is_file("$file")){$fp = fopen("$file", "r");if(!fpassthru($fp))fclose($fp);}
2013.06.24