I should be able to do this, but I'm thick

I am trying to parse the following xml:

http://www.infojobs.net/trabajos.rss/kw_english/


$xml = simplexml_load_file($feed_url);
	foreach($xml-> as $channel)
	{
	
	$job_title = $channel->title;
	$job_link = $channel->link;

	echo "<h1>$job_title </h1><p>$job_link</p>";
	
	}



foreach($xml->item as $channel)

Try this

got it.

thanks

$xml->channel->item as $item