read stylesheet from xml file
Status: Beta
Brought to you by:
lrargerich
class_xslt should be able to read an xml-stylesheet
from the xml doc. eg if the xml doc starts with:
<?xml version="1.0"?>
<?xml-stylesheet href="/xsl/bio.xsl" type="text/xsl"?>
...
then we should be able to just write:
$xslt=new Xslt();
$xslt->setXml("foo.xml");
$xslt->transform()
Logged In: YES
user_id=207436
http://www.whump.com/www/moreXSLAndPHP.html shows how to
read the xml-stylesheet from the xml doc.