<?php

	$xml = new SimpleXMLElement(file_get_contents('sushi.xml'));
	
	$prices = $xml->xpath("/sushi//price");
	
	foreach($prices as $p)
	{	
		$variation = $p->xpath("..");
		$thevariation = $variation[0];
	
		$name = $thevariation->xpath("../..");
		$thename = $name[0];
		
		echo $p."  ".$thename['name']." ".$thevariation['name']."<br/>";
	}
?>