need to send an xml piece of data through Curl, but i always get a blank array as result, can you tip me on this?
this is the code i'm using:
<?php
$url = "http://www.unisend.com.ar/xml/transactions/upload_transaction.php";
$XPost = '<?xml version="1.0" encoding="UTF-8"?>
<purchase>
<transaction_type>1</transaction_type>
<items>
<item>
<name>pizza y faina </name>
<amount>500</amount>
</item>
<item>
<name>pasta</name>
<amount>1500</amount>
</item>
<item>
<name>postre</name>
<amount>5050</amount>
</item>
<item>
<name>helado</name>
<amount>5004</amount>
</item>
</items>
<total>25800</total>
<location>
<lat>-54.63212022</lat>
<lng>--12.56211122</lng>
</location>
</purchase>';
$ch = curl_init();
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml"));
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 40);
curl_setopt($ch, CURLOPT_POSTFIELDS, $XPost);
curl_setopt($ch, CURLOPT_POST, 1);
$data = curl_exec($ch);
if(curl_errno($ch))
print curl_error($ch);
else
print_r($data);
curl_close($ch);
?>
and this is the result i get:
HTTP/1.1 200 OK Date: Thu, 15 Nov 2012 16:17:48 GMT Server: Apache X-Powered-By: PHP/5.2.17 Connection: close Transfer-Encoding: chunked Content-Type: text/html Array ( )
Where is the error here?
Thanks
curl_exec()returns string. Where does theArray()come from? – Ranty Nov 21 '12 at 20:06