如何帶參數跳轉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介面的詳細內容。更多資訊請關注PHP中文網其他相關文章!