<?php
$sxe = simplexml_load_file('sample.xml');

echo $sxe->tag['attribut'];

foreach($sxe->liste->eintrag AS $stadtname) {
  echo $stadtname;
}
?>