[PHP] XSLT Sablotron output

2002-11-02 Thread Daniele Baroncelli
Hi guys, I have typed a simple script to test the Sablotron module recently installed. I found out that the HTML is output all in one line, without newlines, which is very annoying. Anyone can tell me if this is a bug of the module, or I have to specify something somewhere? Here is the script on

Re: [PHP] XSLT - Sablotron

2002-09-05 Thread Chris Wesley
On Thu, 5 Sep 2002, Devin Atencio wrote: > I am trying to find out a way I can pass a variable that is basically > an XML document to xslt_process and make it all work. My script $xmldata = ""; $xsltArgs = array( '/_xml' => $xmlStr ); $xp = xslt_create(); $result = xslt_process( $xp, 'arg:/_xml'

[PHP] XSLT - Sablotron

2002-09-05 Thread Devin Atencio
I am trying to find out a way I can pass a variable that is basically an XML document to xslt_process and make it all work. My script works if I have: $xp = xslt_create(); $result = xslt_process($xp, 'test.xml', 'test.xsl'); however, if I try to do: $xp = xslt_create(); $result = xslt_