application/x-www-form-urlencoded
각 데이터 사이에 &를 추가하고, 키와 값 사이에는 = 추가해 문자열로 전송
multipart/form-data
데이터를 여러부분으로 나누어 전송, 대용량 파일전송이 가능하다.
<form action="index.jsp" method="get" enctype="application/x-www-form-urlencoded">
<fieldset>
<legend>개인 정보</legend>
<label for="name">이름:</label>
<input type="text" id="name" name="name"><br>
</fieldset>
</form>
https://standout.tistory.com/165
'HTML·CSS' 카테고리의 다른 글
input 속성의 모든 것 (0) | 2023.03.18 |
---|---|
@media 미디어 쿼리 속성, 장치의 회전 orientation (0) | 2023.03.17 |
말줄임 코드, 영역을 벗어나면 ... 로 (0) | 2023.03.17 |
데이터를 전송하는 form태그 (0) | 2023.03.17 |
CSS의 뜻 (0) | 2023.02.27 |