<?php
// Nouvelle instance$xslt = new XSLTProcessor();// Chargement du fichier XML$xml = new domDocument();$xml -> load('../xml/laurenthenriot.xml');// Chargement du fichier XSL$xsl = new domDocument();$xsl -> load('../xml/liens.xsl');// Import de la feuille XSL$xslt -> importStylesheet($xsl);
// Transformation et affichage du résultat$result=$xslt -> transformToXml($xml);

if ($result) {
echo  $result;
}
else {
print "Erreur lors de la transformation.";
}


?>