SMALL

 

<input type"hidden" name="OOO" value "OOO">

hidden은 눈에 보이지 않지만 데이터는 전송된다 

uri가 필요없거나 몰래 따로 서버로 전송할때 필요가 있다

 

<html>
  <head>
    <meta charset="utf-8" />
  </head>
  <body>
    <form action="http://localhost/hidden.php">
      <input type="text" name="id" />
      <input type="hidden" name="hide" value="egoing" />
      <input type="submit" />
    </form>
  </body>
</html>

LIST

'일반' 카테고리의 다른 글

클라이언트  (0) 2022.09.21
html form 태그 연습6  (0) 2022.05.30
html form 태그 연습 4  (0) 2022.05.30
html form 태그 연습 3  (0) 2022.05.30
html form 코드 연습 2  (0) 2022.05.30

+ Recent posts