$xml = simplexml_load_string(file_get_contents($url));
foreach($xml->Section->Item as $item){
// Просто пример
echo "<p>$item->Description</p>";
echo "<p>$item->Image</p>";
}
$xml = simplexml_load_string(file_get_contents($url));
foreach($xml->Section->Item as $index => $item){
if ($index === 0){
continue;
}
echo "<p>$item->Description</p>";
echo "<p>$item->Image</p>";
}