TIL #08 HTML method, 파일 업로드
method
사용자가 입력한 정보를 url에 전달할 때에는 get
감추어서 전달할 때는
post
를 사용한다. get과 post를 사용하기 위해서는 method 로 지정해야 한다.
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<form action="http://localhost/method.php" method="post">
<input type="text" name="id">
<input type="password" name="pwd">
<input type="submit">
</form>
</body>
</html>
파일 업로드
파일을 업로드하기 위한 버튼을 만드려면 input
태그의 file
이라는 type
을 통해서 지정해주면 된다
파일을 전송할 서버를 선택하기위해 form
태그의 action
속성을 통해 지정,
method
를 post
로 , enctype
을 multipart/form-data
로 지정해주어야 한다.
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<form action="http://localhost/upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="profile">
<input type="submit">
</form>
</body>
</html>
Author And Source
이 문제에 관하여(TIL #08 HTML method, 파일 업로드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@zhd5379/TIL-07-HTML-method-파일-업로드저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)