Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // http://stackoverflow.com/questions/2491439/problems-reading-rss-feed-with-jquery-get
- // $session = curl_init($_GET['url']);
- // curl_setopt($session, CURLOPT_HEADER, false);
- // curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
- // $xml = curl_exec($session);
- // header("Content-Type: text/xml");
- // echo $xml;
- // curl_close($session);
- $session = curl_init($_GET['url']);
- curl_setopt($session, CURLOPT_HEADER, false);
- curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
- $xml = curl_exec($session);
- header("Access-Control-Allow-Origin: *");
- header("Content-Type: application/json");
- echo $xml;
- curl_close($session);
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement