Advertisement
oquidave

post xml

Jul 22nd, 2011
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1.  
  2.  
  3. $ch = curl_init();
  4. curl_setopt($ch, CURLOPT_HEADER, 1);
  5. curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
  6. //$url = 'http://localhost:10088/travelport_dev/smsxml.php';
  7. $url = "http://lambda.smsmedia.ug/travelport/index.php";
  8. curl_setopt($ch, CURLOPT_URL, $url);
  9. curl_setopt($ch, CURLOPT_POST, 1);
  10. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
  11. curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml'));
  12. $content=curl_exec($ch);
  13. $info = curl_getinfo($ch);
  14. $htt_code = $info['http_code'];
  15. curl_close($ch);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement