blob: 582400e51de8d228db7f37eed6e3bffe53880099 [file] [log] [blame]
<?php
# Generate the web page
// Load the XML source
$xml = DOMDocument::load('resources.xml');
// Load the XSL source
$xsl = DOMDocument::load('resources.xsl');
// Configure the transformer
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules
$maincontent = $proc->transformToXML($xml);
print $maincontent;
?>