I still learning php, as well as, the wonderful world of xml. The problem I'm having is I want to use PHP to combine an XML and XSL file to give me HTML. IS there any way to do this....
This is what I have but would like to use PHP instead...
<SCRIPT>
function window.onload() {
output.outerHTML = xmlDoc.transformNode(styleDoc.documentElement);
}
</SCRIPT>
<BODY>
<XML ID="xmlDoc" SRC="project2001.xml"> </XML>
<XML ID="styleDoc" SRC="../xsl/palm_project2001.xsl"></XML>
<DIV ID="output"></DIV>
Does anyone know how to handel this in PHP?