Results 1 to 3 of 3

Thread: Feeding data from multiple urls to our site.

  1. #1
    Forum Member lakshmi's Avatar
    Join Date
    Apr 2012
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Post Feeding data from multiple urls to our site.

    I want to create a site for game portal. In my site content is feeding from two feed urls. ie, content is mixture of that two urls. More plugins have only one feed url. But I want plugin for feeding from more than one urls. Thanks in advance.

  2. #2
    jomarkosabel's Avatar
    Join Date
    Mar 2009
    Location
    Philippines
    Posts
    40,704
    Thanks
    166
    Thanked 3,390 Times in 3,261 Posts
    What theme are you referring to then.
    Please help our moderating team work more efficiently by not sending us support questions via PM. You can read more about how AppThemes support works here. However, you can send a PM to follow up and remind me if I missed your support request/thread.

    Thank you and have a nice day.

  3. #3
    Forum Member lakshmi's Avatar
    Join Date
    Apr 2012
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Thank for reply.
    The theme used is FlashGamer wordpress theme. My feed url are http://feeds.iphonegamers.net/freeip...p50?format=xml and http://www.androidpolice.com/topics/...es/games/feed/. From this url can not get iimage url. I used the below code. But in "description" is mixture of some data and images. I want its thumb extract from description. can u plz help me?

    $xml = simplexml_load_file('http://www.androidpolice.com/topics/applications-games/games/feed/');
    foreach($xml as $key0 => $value)
    {
    foreach($value as $key => $value2)
    {
    foreach($value2 as $key2 => $value3)
    {
    if ($key2=="title")
    {
    echo $value3."<br>";
    }
    if ($key2=="link")
    {
    echo $value3;
    }
    if ($key2=="description")
    {
    echo $value3."<br><br>";
    }
    }
    }
    }

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 1
    Last Post: December 7th, 2011, 08:51 AM
  2. Feeding the database
    By marloo in forum ClassiPress General Discussion
    Replies: 0
    Last Post: November 22nd, 2010, 02:42 PM