Jump to content

asaxe

Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by asaxe

  1. Hello: I was wondering if there was any update on this or if anyone can provide any assistance. I've been trying to transform an XML file using XSL, but am not having any luck. I've tried about every possible method of transforming the XML, but always get an error - it's almost as if whatever methods are needed to transform XML are not turned on on the server (can anyone at TCH shed light on this?). Currently, I'm trying to use: $xsl = new DomDocument; $xsl->load('distanceorder.xsl'); $xp = new XsltProcessor(); $xp->importStylesheet($xsl); $xml_doc = new DomDocument; $xml_doc->loadXML($data); $newdata=$xp->transformToXML($xml_doc); And I get, in return: Fatal Error: Class 'XsltProcessor' not found Any suggestions or ideas? Any thoughts on which PHP functions to use to process the XML? Thanks! Andrew
×
×
  • Create New...