xml transform using xsl
-
Hi!
Im trying to style an xml file using xsl. Everything is working on my own built php site but when i try to use it in my wordpress theme i get this:
The specified file groups.xsl could not be found.
It finds the xml document but not the xsl. The code looks like this:
<?php
$mm_xsl = new MM_XSLTransform();
$mm_xsl->setXML(“https://localhost/wp-content/themes/themename/MatchMaker.xml”);
$mm_xsl->setXSL(“https://localhost/wp-content/themes/themename/groups.xsl”);
echo $mm_xsl->Transform();
?>Anyone got a solution?
- The topic ‘xml transform using xsl’ is closed to new replies.