发布php变量

时间:2011-07-16 14:42:44

标签: php variables post

  

可能重复:
  Passing $_POST values with cURL

我有一个php变量$abc(文本类型)。我想将此数据发布到http://www.example.com/xyz.php我该怎么做?我不能使用GET。

1 个答案:

答案 0 :(得分:2)

您可以使用cURL extension

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "http://www.example.com/xyz.php");
curl_setopt($curl, CURLOPT_POST, true);

$post = array(
    'key' => 'value'
);

curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
curl_exec($curl);