Re: [PHP] php get rss tag using DOM

2009-08-20 Thread Rodgerr
Getting RSS Feeds is going really good right now, what amazing technology :) http://www.msnnick.net Nickname Msn 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

Re: [PHP] php get rss tag using DOM

2009-07-04 Thread Michael A. Peters
Michael A. Peters wrote: Rodgerr wrote: 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;

Re: [PHP] php get rss tag using DOM

2009-07-03 Thread Rodgerr
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 =

Re: [PHP] php get rss tag using DOM

2009-07-03 Thread Michael A. Peters
Rodgerr wrote: 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 =

[PHP] php get rss tag using DOM

2009-02-08 Thread Morris
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');