');
}
$xpath = $doc->xpath_new_context();
// Show movie list
$movies = $xpath->xpath_eval("//movie[contains(translate(title,'abcdefghijklmnopqrstuvwxyz', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'), '".strtoupper($_REQUEST["search"])."')]");
print "Movie list
\n";
print "\n";
foreach ($movies->nodeset as $movie) {
$title = "";
$imdb = "";
$id = $movie->get_attribute("id");
foreach ($movie->child_nodes() as $child) {
if ($child->node_name() == "title") $title = $child->get_content();
if ($child->node_name() == "imdb") $imdb = $child->get_content();
}
print " \n";
print " | $title | \n";
print "
\n";
}
print "
\n";
print "Movies found: ".count($movies->nodeset)."\n";
?>