« Return to Thread: php get rss tag using DOM

Re: php get rss tag using DOM

by Nathan Rixham :: Rate this Message:

Reply to Author | View in Thread

Morris wrote:

> Hi,
>
> I am trying to write a programme to read a rss xml file.
>
> ...
> <media:content url="*exampe.jpg*" ...>
> ...
>
>     scan anyone tell me how to get the url attribute? I wrote some codes
> similar:
>
>
>  $doc = new DOMDocument;
>  $doc->load($myFlickrRss);
>
>  $r = $doc->getElementsByTagName('media:content');
>  for($i=0;$i<=$r->length;$i++)  {
>
>   // help here
>
>  }
>

use http://rssphp.net/ you can view the source online and it's all done
using DOMDocuments :)

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

 « Return to Thread: php get rss tag using DOM