Archived Releases – 2003


loadXml($xmlString);

$xsl = new DomDocument;
$xsl->load(‘./clientservices/product_releases/releases.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;

?>