请原谅问题的可能简单性,但我是curl
的新手,因此找到了我的脚。我有以下内容在php页面中,当被调用时,意味着将 dept = xxx 发布到 mysite
$ch = curl_init( );
curl_setopt($ch, CURLOPT_URL,"http://mysite/");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "dept=".$departmentName);
curl_exec ($ch);
curl_close ($ch);
我有2个查询:
1)调用时,屏幕变为空白,用户未被重定向。
2)如果重定向是正确的,我是否正确地认为以下内容将正确接收发布的数据:
if (isset($_POST["dept"]))
{
$deptName=$_POST["dept"];
}
答案 0 :(得分:2)
将此cURL
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);