Advertisement
Guest User

Untitled

a guest
Dec 1st, 2012
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $ch = curl_init();
  2. curl_setopt($ch, CURLOPT_URL, 'http://orders.novaposhta.ua/xml.php');
  3. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  4. curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml"));
  5. curl_setopt($ch, CURLOPT_HEADER, 0);
  6. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
  7. curl_setopt($ch, CURLOPT_POST, 1);
  8. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  9. $response = curl_exec($ch);
  10. curl_close($ch);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement