|
Reverse RSS Feed
Does anyone have a script which can take an incoming RSS feed and convert it into usable php variables.
such as
foreach ($RSS_IN)
{
$title = $RSS_IN['title'];
$desc = $RSS_IN['description'];
$link = $RSS_IN['link'];
}
Anyone got anything?
|