Jump to content

ravi181229

Members
  • Posts

    57
  • Joined

  • Last visited

    Never

Everything posted by ravi181229

  1. Hi all, Can anyone help me with jump tv feed. What is the url (link) to fetch jump tv feeds. Thanks
  2. Hi, I have got problem with stickam feed. http://www.stickam.com/viewCategorySchedule.do?category=show/css/en/category/show/schedule.css It used to display the livecasts and was working fine. Now it does not return any data. need help. Thanks in Advance.
  3. jonsjava, but when I execute the feed in Konquror browser to get the xml file, It displays all the events till today.
  4. 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.
  5. hi try this: check the BaePath. It was '/fckeditor/'. <?php include_once("fckeditor/fckeditor.php") ; $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = 'fckeditor/' ; $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; $oFCKeditor->Create() ; ?>
  6. I need to provide a search filter using combo-box in the Rico Livegrid. When user selects a value from combo-box , it should populate the data in livegrid respective to the selected value. Can anybody help please. Thanks in advance.
  7. This must work: <?php $link = 'http://i.l.cnn.net/cnn/.element/ssi/www/auto/2.0/video/xml/pipeline.xml'; $rss_feed = file_get_contents($link); $CNNPipeline = new SimpleXMLElement($rss_feed); foreach ($CNNPipeline->video as $cast) { echo "<hr>"; echo "<br>Video Id :".$cast->video_id; echo "<br>Img Url :".$cast->image_url; echo "<br>tz Img url :".$cast->tz_image_url; echo "<br>video url :".$cast->video_url; echo "<br>tease txt :".$cast->tease_txt; echo "<br>vid duration :".$cast->vid_duration; } ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.