如何帶引數跳轉php介面
1、新建HTML檔案並寫入HTML表單
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>表單</title> </head> <body> <!-- 新增表單 --> <form></form> </body> </html>
2、設定「action」和 「method」
「action」:是需要提交PHP檔案地址。
「method」:是提交方法,有兩種提交方法分別是「get」和「post」。
<form action="你的php檔案地址" method="get"></form>
3、新增文字方塊和提交按鈕
在「form」標籤裡新增下面程式碼
<!-- 輸入框 --> <input type="text" name="這裡是引數名"> <!-- 提交按鈕 --> <button type="submit">提交</button>
4、提交表單
首先雙擊開啟HTML檔案,然後在輸入引數,最後點選提交。
5、在php中接收引數
在php中可以通過「$_GET」來接收引數,如果你是「post」提交過來的,可以通過「$_POST」來接收。
<?php //接收get傳過來的引數 $var = $_GET['var_name'];//這裡的var_name就是你的引數名
以上就是如何帶引數跳轉php介面的詳細內容,更多請關注TW511.COM其它相關文章!