[PHP] Using two XSLT stylesheets

2003-10-18 Thread rich
I'm working on a read only database. I have the data encoded as XML and am writing the queries using XSLT stylesheets. The only way I can find (being, of course, restricted to XSLT 1.0 on PHP) of executing the required queries requires two stylesheets. The generates a result tree which needs to

Re: [PHP] Using two XSLT stylesheets

2003-10-18 Thread Ray Hunter
xslt_process($xh, 'library.xml', 'simple-search-get-results.xsl', -- 'results.xml', NULL, $params); $data = xslt_process($xh, 'results.xml', -- 'simple-search-display-results.xsl', NULL, NULL, NULL); What happens when you do the above...what is the var_dump of data? -- BigDog -- PHP

Re: [PHP] Using two XSLT stylesheets

2003-10-18 Thread rich
Ray Hunter wrote: xslt_process($xh, 'library.xml', 'simple-search-get-results.xsl', -- 'results.xml', NULL, $params); $data = xslt_process($xh, 'results.xml', -- 'simple-search-display-results.xsl', NULL, NULL, NULL); What happens when you do the above...what is the var_dump of data?