본문 바로가기
MySql

MySQL 텍스트 상자를 보이지 않거나 읽기 전용으로 만들기

by 베이스 공부 2021. 1. 13.
반응형
<html>
<body>
  <form action="MyInserts.php" method="GET">


<br> <p><u>Create Acct</u></p> <br> firstname: <input type="text" name="firstbox"><br> lastname: <input type="text" name="lastbox"><br> id number: <input type="text" name="idbox"><br> <input type="submit" value="Create"> </form> </html>

 

해결 방법

 

읽기 전용 :

<INPUT TYPE="text" NAME="firstbox" readonly>

보이지 않음

<INPUT TYPE="text" NAME="firstbox" style="display: none">

 

참조 페이지 https://stackoverflow.com/questions/14706194

 

 

반응형

댓글