PHP 학습노트 - 양식 처리

1487 단어
은 폼의 대상이며 폼에는 2개의 텍스트 필드가 있으며 각각 2개의 변수name과age가 연결되어 있습니다.
index를 쓰십시오.html 파일, 코드는 다음과 같습니다.
<html>
<body>

<form action="welcome.php" method="post">
Name: <input type="text" name="name" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>

</body>
</html>

welcome.php 파일 코드:
<html>
<body>

Welcome <?php echo $_POST["name"]; ?>.<br />
You are <?php echo $_POST["age"]; ?> years old.

</body>
</html>

제출 (submit) 단추를 누르면 텍스트 영역의 값이name,age 변수로 전송되고welcome에 표시됩니다.php 페이지에 있습니다.
또한 GET 메서드, index를 사용할 수도 있습니다.html 파일은 다음과 같이 수정됩니다.
<form action="welcome.php" method="get">
Name: <input type="text" name="name" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>

method 속성에서 get으로 수정합니다.
welcome.php 파일 코드:
Welcome <?php echo $_GET["name"]; ?>.<br />
You are <?php echo $_GET["age"]; ?> years old!

GET 방법을 사용하는 것은 안전하지 않습니다. 가져온 데이터가 주소 표시줄에 표시됩니다.
http://www.hellophp.com/welcome.php?name=laotou&age=20
그러나 주소에 입력 데이터가 포함되어 있기 때문에 즐겨찾기에 저장할 수 있습니다.
판권 성명: 본고는 블로거의 오리지널 문장으로 블로거의 허락 없이 전재할 수 없습니다.

좋은 웹페이지 즐겨찾기