코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>HTML input tag - multiple attribute</title> </head> <body> <form action="/examples/media/action_target3.php" method="post" enctype="multipart/form-data"> 업로드할 파일 : <input type="file" name="upload[]" multiple><br> <input type="submit"> </form> </body> </html>