2011-07-16 96 views
2

可能重複:
Passing $_POST values with cURL張貼PHP變量

我有一個PHP可變$abc(文本類型)。我想將這些數據發佈到http://www.example.com/xyz.php我該怎麼做?我不能使用GET。

+2

使用捲曲。請參閱http://stackoverflow.com/questions/28395/passing-post-values-with-curl –

回答

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);