Morris-25 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
> 
>  }
> 
> 

Hi. Our site  http://rssphp.blogspot.net http://rssphp.blogspot.net  is
working on providing possible solutions to the problem with different
parsing methods in PHP. It's worth to have a look at the options.
-- 
View this message in context: 
http://www.nabble.com/php-get-rss-tag-using-DOM-tp21901033p24330531.html
Sent from the PHP - General mailing list archive at Nabble.com.


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

Reply via email to