loadXml($xmlString);
$xsl = new DomDocument;
$xsl->load(‘./clientservices/product_releases/testreleases.xsl’);
$proc = new XsltProcessor;
$proc->importStyleSheet($xsl);
$releaseListHtml = $proc->transformToXml($xml);
// Step 3: Output the document that will be sent to the viewers browser
echo $releaseListHtml;
?>