//파일 업로드. linux+apache+php3/4 테스트를 통과했습니다. iis 테스트가 실패했습니다. win+apache+php가 테스트되지 않았습니다.
if ($HTTP_POST_VARS["upload"]=="업로드"){
file://여기에서 파일 이름, 형식, 이미지 크기 등을 확인하는 기능을 추가할 수 있습니다.
file://$picurl 로컬 시스템의 전체 경로
file://$picurl_name 업로드 후 임시 파일명
file://$picurl_size 파일 크기(바이트)
file://$picurl_type 파일의 MIME 유형
copy("$picurl","/where/you/want/put/the/uploaded/files/in/$picurl_name");
종료
}
?>