Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $url = "http://xxx:xxx@www.r-c.ro/feeds/complet.xml";
  2.  
  3.  
  4. curl_setopt($ch, CURLOPT_URL,$url);
  5. curl_setopt($ch, CURLOPT_POST, true); // tell curl you want to post something
  6. curl_setopt($ch, CURLOPT_POSTFIELDS, "");
  7. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // return the output in string format
  8. $output = curl_exec ($ch); // execute
  9. $xml = new SimpleXMLElement($output) or die('Error creating a SimpleXML instance');
  10.  
  11.  
  12. foreach ($xml->Products->Product as $product) {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement