php接收姓名與學號怎麼做
1、首先是提交表單:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <h1>请输入:</h1> <form action="index.php" method="GET"> 请输入学号:<input type="text" name="code"/><br/> 请输入姓名:<input type="text" name="name"/><br/> <input type="submit" value="查询" /> </form> </body> </html>
2、然後透過$_GET接收即可。
<?php $student_code = $_GET["code"]; $student_name = $_GET["name"]; // 后续操作
注意:php使用$_GET還是$_POST需要與表單method屬性對應。
更多PHP相關知識,請造訪PHP中文網!
以上是php接收姓名與學號怎麼做的詳細內容。更多資訊請關注PHP中文網其他相關文章!