0
votes
1answer
17 views

Why can't a variable be used in an XSL template selector predicate?

Given this XML; <root> <foo x='1'/> <foo x='3'/> <foo x='7'/> </root> and this stylesheet; <xsl:transform version="1.0" ...
0
votes
0answers
44 views

How to remove xmlns:php from output in a XSL produced by `registerPHPFunctions`?

Using updtodated PHP5 and libXML. See registerphpfunctions. I try many things... Including saveXML(null,LIBXML_NSCLEAN). Perhaps related to How to say to XSLT not output redundant ...
2
votes
2answers
69 views

PHP registered functions in XSLT1, how to return a XML fragment with PHP?

I am using PHP with XSL and registerPHPfunctions. It is ok for return PHP string values with xsl:value-of, but I not know how to return XML fragments from PHP. Example at XSLT: <xsl:template ...
0
votes
0answers
33 views

Calling PHP-function from HTML inside XSLT [duplicate]

I'm new to PHP but quite used to other languages. I'm trying to make a list of recipe titles that are fetched from several XML files, if they match a specific recipe category. I have written a PHP ...
1
vote
1answer
69 views

Unable to Output XML using XSLT in PHP

i am trying to output the Form using XML & XSLT in php but i am unable to fullfill the condition somehow.here is what my XML look like: <?xml version="1.0" encoding="UTF-8"?> ...
0
votes
1answer
125 views

Combining two XML documents in one XSLT document and matching values

I have two XML documents with different structures (examples below) that I want to merge in the XSLT document I use for creating HTML output. What I want to do is to create a table like this (example ...
1
vote
1answer
115 views

XInclude not evaluated in XSLT transformation using PHP

I am trying to include different source files (e.g. file1.xml and file2.xml) and have these includes resolved for an XSLT transformation using PHPs XSLTProcessor. This is my input: source.xml ...
0
votes
0answers
42 views

Multiple instances of xsltprocessor in php page not working correctly

I have two instances of xsltprocessor running in a php page i know you cannot call xsltprocessor with two extensible style sheets in one function, i have two conditional statements in my php that load ...
0
votes
2answers
247 views

XSLT escape all entities except <p> <br> <b> <a>

I have a small problem with xslt i have this text newline<br /> <br /> newline<br /> <br /> <br /> newline<br /> <br /> <br /> newline<br /> ...
3
votes
4answers
2k views

How to compare strings with Xpath 1.0?

I am experiiencing an issue with the < operator on strings in Xpath 1.0. This simple Xpath expression 'A' < 'B' (or the equivalent 'A' &lt; 'B') did not evaluate to true in my xslt run ...
1
vote
2answers
294 views

Defining custom tags in XSLT transformation

I use php DOMDocument for XSLT transforming one XML to another and i need to use additional tag - mytag in resulting document tag like <mytag:full-text>...</mytag:full-text> to define ...