What I'm trying to do is have a user on my vBulletin forum post the latest news story from a website each time it's generated using an RSS poster. Unfortunately the website does not have an RSS feed, so I created one based on the source code of the site. The feed pulls in the title & link to the news post. I also want the description of the news post to show in the vBulletin post, so I created a php script (shown below) to collect the description of the post.
My problem now is that with the RSS poster on vBulletin using the php script, it always updates all of its old posts to have the description from the latest post. This is because it uses the php script in every post - always showing the latest post description.
I can't for the life of me think of a way around this. Any help would be greatly appreciated. Thanks!
<?php
$fullxml = simplexml_load_file('http://feed43.com/efpatches.xml');
$link = $fullxml->channel->item[0]->link;
$page = file_get_contents($link);
$doc = new DOMDocument();
$doc->loadHTML($page);
$divs = $doc->getElementsByTagName('div');
foreach($divs as $div) {
if ($div->getAttribute('id') === 'G_g_ArticleViewContainer_viewArticleContent_v_hEditor_forView_strArticleContent_Viewer') {
return nl2br(str_replace(" ","",htmlentities($div->nodeValue,null,'utf-8')));
}
}
?>