Hi
I have a problem with importing a feed.
$feed = "http://feeds.feedburner.com/wnbc/video";
I tried with following code:
$rss_feed = file_get_contents($feed);
$KNBC = new SimpleXMLElement($rss_feed);
$casts = $KNBC->channel->item;
but it returns past events, it does not return today's events.
I tried with cURL:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,'http://feeds.feedburner.com/wnbc/video');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$contents = curl_exec ($ch);
curl_close ($ch);
$KNBC = new SimpleXMLElement($contents);
$casts = $KNBC->channel->item;
echo $casts;
but it does not return anything.
need Help.
Thanks in advance.