코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>HTML5 Input Attributes</title> </head> <body> <h1>multiple 속성을 이용한 다중 파일 전송</h1> <form action="/examples/media/request.php"> 서버로 전송할 파일을 선택해주세요 :<br> (여러 개의 파일 선택도 가능해요!)<br><br> <input type="file" name="uploadfile" multiple><br><br> <input type="submit" value="전송"> </form> </body> </html>