我有链接test.php?fullname=Fahim&emailid=test@test.com
在 test.php 我有以下
$fullname = $_POST['fullname'];
$emailid = $_POST['emailid'];
echo "$fullname===$emailid===";
我总是得到回应======
我期待着Fahim===test@test.com
。
知道为什么会这样吗?
在 test.php 中,将使用 $_GET 接收数据,因为您使用 URL 发送数据
你的链接test.php?fullname=Fahim&emailid=test@test.com
$fullname = $_GET['fullname'];
$emailid = $_GET['emailid'];
echo "$fullname===$emailid===";
输出
Fahim===test@test.com
您必须使用$_GET['param_name']
来检索通过 url 发送的值。
当您从 url 传递参数时,它是一个 get 请求..
在 PHP 中,我们$_GET
用于从 get 请求中获取信息
$fullname = $_GET['fullname'];
$emailid = $_GET['emailid'];
echo "$fullname===$emailid===";