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接收姓名與學號怎麼做的詳細內容,更多請關注TW511.COM其它相關文章!