<iframe name="uploadFrame" width="60" height="50" scrolling="no" style="display:none;"></iframe>
<form action="upload.php" method="post" enctype="multipart/form-data" target="uploadFrame"/>
<input type="hidden" name="MAX_FILE_SIZE" value="1000000" />
<label for="userfile">Upload a file:</label>
<input type="file" name="userfile" id="userfile" />
<input type="submit" value="Send File" />
</form>
---------------------------------------------------------------------
file_exists($filepath);
- 파일경로를 파라미터로 넘겨주고 존재 여부를 Boolean으로 받음
move_uploaded_file($_FILES['userfile']['tmp_name'], $path);
- 파일을 해당 경로에 업로드함
?>
'Server-Side > PHP' 카테고리의 다른 글
FirePHP 사용법 (0) | 2010.07.20 |
---|---|
post raw data (0) | 2010.07.20 |
PHP 이미지 crop (0) | 2010.07.02 |
[Code Igniter] layout 적용하기 (0) | 2010.04.23 |
PHP 시간함수( strtotime, time(), date() ) (0) | 2010.03.25 |