일반

html form 태그 연습6

알 수 없는 사용자 2022. 5. 30. 18:13
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