SMALL
겟과 포스트의 차이
form태그 쓸 때 웬만하면 post사용
get방식 url 전송처리
post방식 몰래 숨겨서 처리 안전
<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>

method-1.html
0.00MB
LIST
'일반' 카테고리의 다른 글
서버 (0) | 2022.09.21 |
---|---|
클라이언트 (0) | 2022.09.21 |
html form 태그 연습 5 (0) | 2022.05.30 |
html form 태그 연습 4 (0) | 2022.05.30 |
html form 태그 연습 3 (0) | 2022.05.30 |