이 섹션의 내용:
php 페이지값 전달의 간단한 예
1, index.html
코드 복사 코드 예:
<html> < head > <title> 留言本首页 - www.jbxue.com</title> <body> <h1>Hello,Welcome to imchaotan 留言本</h1><br /> <h3>留下您宝贵的建议吧?</h3> <table align="center" vspace=80 > <form method="post" action ="post.php"> <tr> <td>账户:</td> <td><input type="text" name="id" /></td> </tr> <tr> <td>想说点什么?</td> <td><input type="text" name="guess" size="60" /></td> </tr> <tr> <td><input type="submit" value="提交" /></td> <td><input type=" reset " value="重置" /></td> </tr> </form> </table> </body> </head> </html>
2, post.php
코드 복사 코드 예:
<? if(empty($_POST['id'])) { echo "账户不能为空,5秒后自动返回登录界面"; header("refresh:5;URL='index.htm'"); } else if(empty($_POST['guess'])) { echo "文本不能为空,5秒后自动返回登录页面"; header("refresh:5;URL='index.htm'"); } else { $id=$_POST['id']; $guess=$_POST['guess']; echo"Hello".$id."你的留言是".$guess."<br />"; } ?>
PHP 초보자와 관련된 더 많은 튜토리얼을 보려면 PHP 입문 튜토리얼에 소개된 추가 콘텐츠를 참조하세요.
위 내용은 PHP 시작을 위한 페이지 값 전송 기술 분석의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!