[HTML] 프로그램 전송

형이·2023년 7월 31일
0

HTML

목록 보기
12/14
post-thumbnail

📝 HTML

1. 프로그램 전송

1-1. method 속성 = 전송 방식

  • get : 입력된 모든 내용이 URL에 포함되어 전송된다. (기본값)
  • post : 입력된 모든 내용이 URL에 노출되지 않고 전송된다.

EX)

<body>
	/* method="get"이거나 입력을 안했을 경우 */
    <!-- http://localhost/method.jsp?id=admin&pwd=admin123 -->
    /* method="post"일 경우 아무것도 노출되지 않음! */
    <form action="http://localhost/method.jsp" method="post">
        <input type="text" name="id" id="id"/>
        <input type="password" name="pwd" id="pwd"/>
        <input type="submit" />
    </form>
</body>

0개의 댓글