i have a blog on one site. id basically just want the titles (with a link) to show up on my personal webpage. i imagine i do this by grabbing info from the rss feed, and displaying it.
i dont have a lot of experience with xml.
anyone have a simple script that does this, or a link to some info? my webpage is in php.
thanks
edit: ...the feed is an Atom feed, and the xml is screwy to deal with...
i need a regex that will lift the link out of this line. can some one help?
<link rel="alternate" href="http://subpopulated.ning.com/x...l/689763:BlogPost:6149"/>
i came up with
is that as clean as ill get?
i dont have a lot of experience with xml.
anyone have a simple script that does this, or a link to some info? my webpage is in php.
thanks
edit: ...the feed is an Atom feed, and the xml is screwy to deal with...
i need a regex that will lift the link out of this line. can some one help?
<link rel="alternate" href="http://subpopulated.ning.com/x...l/689763:BlogPost:6149"/>
i came up with
#<link.*(http:\/\/.*?)\"/>#s
is that as clean as ill get?