2
我有一個PHP可變$abc
(文本類型)。我想將這些數據發佈到http://www.example.com/xyz.php
我該怎麼做?我不能使用GET。
我有一個PHP可變$abc
(文本類型)。我想將這些數據發佈到http://www.example.com/xyz.php
我該怎麼做?我不能使用GET。
你可以使用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);
使用捲曲。請參閱http://stackoverflow.com/questions/28395/passing-post-values-with-curl –