|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-01-16 06:32 UTC] sterling@php.net
[2001-09-06 17:38 UTC] sterling@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 21:00:02 2025 UTC |
imagine a situation of the form: <? # target a specific user agent xslt_output_begintransform("agentN.xsl"); ?> <content> how now brown cow <? # transform an sql result set into an html table xslt_output_begintransform("table.xsl"); ?> <result> <row><col>one</col><col>two</col></row> <row><col>1</col><col>2</col></row> </result> <? xslt_output_endtransform(); ?> </content> <? xslt_output_endtransform(); ?> this might easily be desired (as i do), but it doesn't work. perhaps it's because sablotron doesn't allow more than one concurrent xslt processor. the errors that result are odd indeed, like the second filename string being smashed before its use.