Quote:
Originally Posted by SmokeyTheBear
<?php
$curl_handle=curl_init();
curl_setopt($curl_handle,CURLOPT_URL,'http://example.com/folder/file.html');
curl_setopt($curl_handle,CURLOPT_RETURNTRANSFER,1) ;
$buffer = curl_exec($curl_handle);
curl_close($curl_handle);
echo $buffer;
?>
|
Smokey can you help me with a script that uses $curl to send an XML request with POST?
I need to read the XML stats and populate my Aff Program tables.