200529 - Continuing Ed Fall 2005
<?php
$xml = simplexml_load_file ("single_course.xml");
$term_code = $xml->parameters->term;
// You can wing it and hope there is only one
$term_node = $xml->definitions->terms->term->title;
// or, you can get specific with xpath
$term_node = reset($xml->xpath("definitions/terms/term[@id='$term_code']"));
$term_string = $term_node->title;
?>
<html>
<body>
<p><?php echo $term_code ." - " .$term_string ?></p>
<hr>
<?php highlight_file (__FILE__);?>
</body>
</html>