PHP Code:
<?
$xmlFileData = file_get_contents("linktovbexternalfile");
$xmlData = new SimpleXMLElement($xmlFileData);
foreach($xmlData->thread as $thread) {
print("<h2>" . $thread->title . "</h2><br />");
print($thread->author . " (id:". $thread->id .") <br />_________________________<br />");
}
?>
Will give me everything except for the thread id. Any ideas?
--------------- Added [DATE]1220310881[/DATE] at [TIME]1220310881[/TIME] ---------------
Never mind I figured it out