PHP2011. 5. 8. 11:41

download.php 

<?

$file = "./file/Battery.pdf"; // 파일 저장위치

$filename = "Battery.pdf"; // 파일 이름


if ( file_exists($file) )

{

header("Content-Type: doesn/matter");

header("Content-length: ".filesize("$file"));

header("Content-Disposition: attachment; filename=$filename");

header("Content-Transfer-Encoding: binary");

header("Pragma: no-cache");

header("Expires: 0");


if ( is_file("$file") )

{

$fp = fopen("$file", "r");


if ( !fpassthru($fp) )

{

fclose($fp);

}

}

} else

{

echo "<script>alert('첨부파일이 존재하지 않습니다.'); history.go(-1);</script>";

}

?>

-------------------------------------------------------------------------------------------
링크 부분
<map name="Map" id="Map">
<area shape="rect" coords="495,1,609,24" href="download.php?filename=Battery.pdf" target="_self" />
</map>


아주 간단한거입니다. 나중에 함수 만들어서 사용할수도 있고 입맛에 잘 골라 쓰세요.

Posted by 아이맥스