php标题 - 发布并关注

时间:2009-09-28 04:22:15

标签: php http-headers

有人可以帮助我发布如何发布变量并将帖子关注到该页面吗?

关心菲尔

3 个答案:

答案 0 :(得分:1)

您可以使用CURL执行此操作:

$ch = curl_init();
$data = array('name' => 'Foo', 'bar' => 'goo');

curl_setopt($ch, CURLOPT_URL, 'http://myserver.com/post.php');

//post the data
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

//enable RETURN_TRANSFER so curl_exec() returns result of the request
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

$result = curl_exec($ch);
curl_close($ch);

echo $result;

答案 1 :(得分:0)

您无法通过重定向执行HTTP POST请求。你可以使用这样的参数进行GET重定向:

header('Location: target_page.php?a=foo&b=bar');

答案 2 :(得分:0)

如果要将数据从一个页面传递到另一个页面然后重定向到该页面,可以暂时将数据存储在$ _SESSION超全局数组中,然后重定向到新页面。一旦你在那里,你就可以从数组中取出数据并在需要时取消设置()。