Hey,
I've made a simple php parser to parse xml and xsl into a nice webpage.
<?
// include variable's
include("CONST.php");
// Set location XML and XSL file
$XMLfile = "" . $DB_DIRECTORY . "/data.xml";
$XSLfile = "" . $XSL_DEFAULT_PATH . "/page.xsl";
// Load xml and xsl in DOM
$xmldoc = domxml_open_file($XMLfile);
$xsldoc = domxml_xslt_stylesheet_file($XSLfile);
// Parse XML and XSL
$result = $xsldoc->process($xmldoc);
// Show HTML file in browser
print $result->dump_mem();
?>
Let me know what you think.