puratu Posted July 31, 2008 Share Posted July 31, 2008 hi I m trying to populate RSS feed in a php file below is the code I use <?php $session = curl_init("http://rss.news.yahoo.com/rss/topstories"); // Open the Curl session curl_setopt($session, CURLOPT_HEADER, false); // Don't return HTTP headers curl_setopt($session, CURLOPT_RETURNTRANSFER, true); // Do return the contents of the call $xml = curl_exec($session); // Make the call header("Content-Type: text/xml"); // Set the content type appropriately echo $xml; // Spit out the xml curl_close($session); // And close the session ?> it works perfectly, but I cant show the images of the RSS in Flash what am I doing wrong please Help Link to comment https://forums.phpfreaks.com/topic/117614-help-needed-rss-security-sandbox-problem/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.