My friend can you assist me again.
i'm interested recently with you codes,
<?php
$url = 'http://atlanta.craigslist.org/tlg/index.rss';
$xmlString = file_get_contents($url);
$xml = simplexml_load_string($xmlString);
foreach($xml->item as $listing)
{
$link = $listing->link;
$title = $listing->title;
echo '<a href='.$link.'>'.$title.'</a><br/>';
}
?>
You showed the link and title how about the rest?
How do i show/display all the elements or nodes of these codes?
Thanks again in advance.