PHP 간단하게 파일 업로드 하기 (File Upload)
<?
if($mode=="upload") {
$t_dir = "../target_dir"; // 업로드된 파일을 저장할 디렉토리
$s_sm = "savename"; // 업로드된 파일을 저장할 이름 ($file1_name 이라고 하면 PC에서의 원 파일명을 받아옵니다.)
if($file1){
$ret = move_uploaded_file($file1, "$t_dir/$s_sm");
if($ret) {
echo "파일 업로드 완료";
} else {
echo "파일 업로드 실패";
}
}
}
?>
<form method=post enctype='multipart/form-data'>
<input type=hidden name=mode value=upload>
<input type=file name=file1>
<input type=submit>
</form>
간단하게 이용할 수 있는 업로드 소스 예제 입니다,
참고로, 파일을 업로드 하려면 폼에서 enctype의 값을 multipart/form-data로 해야 합니다.
실제로 파일을 업로드 하는 부분은 move_uploaded_file 부분입니다.
간단한 도해
PHP 파일 업로드 upload
'홈페이지제작' 카테고리의 다른 글
자바스크립트 내용에 따라 iframe 크기 자동 조절(자동 조정) - 두번째 (0) | 2012.07.20 |
---|---|
PHP 문자열로 문자열 자르기 explode 함수 (1) | 2012.07.20 |
PHP substr 문자열 자르기 함수와 약간의 팁 (0) | 2012.07.17 |
PHP 디렉토리 내의 파일 목록 (하위 디렉토리 포함) (0) | 2012.07.09 |
학원매매 홈페이지제작 (0) | 2012.07.04 |