hello is not there. at mozila firefox i get a blank page. at IE7 i get a pop up that asks if i want to open it and then nothing
C:\xampp\htdocs running the codes at this folder, typing http://127.0.0.1/test.php at the browser i managed to see "hello" at the browser $xp = new XsltProcessor(); $xsl = new DomDocument; $xsl->load('p06166.xsl'); $xp->importStylesheet($xsl); $xml_doc = new DomDocument; $xml_doc->load('p06166.xml'); echo $xp->transformToXML($xml_doc); PHP: running the code above i am trying to preview the xml to the browser applying the templates contained in the xsl. i only get a banch of characters. no stylesheet is applied. any ideas? tnx for the help so far