// parse XML file
$xml = new SimpleXMLElement(file_get_contents("lectures.xml"));
?>
Lectures
$lecture = array_shift($xml->xpath("/lectures/lecture[@number=2]"));
echo "";
echo "Lecture " . $lecture["number"];
echo "";
echo "
";
echo $lecture->title;
echo "";
echo "
";
echo "
";
?>