i have a set of data formatted in xml and using some xslt i generate another xml
$xmldoc = domxml_open_file($xmlpath."testDati1.xml");
$xsldoc = domxml_xslt_stylesheet_file($xmlpath."informativa1.xslt");
$result = $xsldoc->process($xmldoc,array('DataInvio' => date("YmdHis")));
now, using some parameters i want to retrasform the output in html or in pdf
there's no problem with html, but any of u knows how to trasform an xml file into a pdf file with less pain possible?
(its always possible to write a parser which uses php's api for pdf... i guess...)
thnx in advance