개발 노트

html form 태그 연습 5 본문

프로그래밍/Html

html form 태그 연습 5

알 수 없는 사용자 2022. 5. 30. 17:51

 

<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>

'프로그래밍 > Html' 카테고리의 다른 글

html form 태그 연습6  (0) 2022.05.30
html form 태그 연습 3  (0) 2022.05.30
Html form 코드 연습 1  (0) 2022.05.30
Html P태그를 배워보자  (0) 2022.05.30
Html 이미지 태그를 연습해보자  (0) 2022.05.30