O
OmyGOD
Hi,
I am trying to transform XML code like
<text>
This is the first line<br />
This is the second line
</text>
and XSL
<xsl:value-of select="text" />
with XSLTProcessor.(which is provided by an extension of PHP5)
but I can get result like this
This is the first line
This is the second line
how can I keep the <br /> tag during transformation.
Thanks
I am trying to transform XML code like
<text>
This is the first line<br />
This is the second line
</text>
and XSL
<xsl:value-of select="text" />
with XSLTProcessor.(which is provided by an extension of PHP5)
but I can get result like this
This is the first line
This is the second line
how can I keep the <br /> tag during transformation.
Thanks