Hi!
Ich habe folgendes Problem:
Diese XSL Template wird vom Sablotron 0.50 klar geparst.
Es erscheint der Link:
<a href="makehighlight.php?id=2high=troubles">
Wird in HTML klar gebildet.
Nur das ist natürlich kein sauber GET-Query.
Parse ich mit '&'
<a href="makehighlight.php?id=2&high=troubles">
so erhalte ich
XML parser error 4: not well-formed (invalid token).
Hat jemand eine Idee wie ich den Parser austricksen kann.
Vielen Dank!
Blaster
Ich habe folgendes Problem:
PHP-Code:
...
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl: output method = "html" encoding="UTF-8" indent="yes"/>
...
<xsl:template name="color">
<xsl: param name="color">#0000d0</xsl: param>
<xsl:variable name="id">
<xsl:value-of select="@id"/>
</xsl:variable>
<xsl:variable name="high">
<xsl:value-of select="name()"/>
</xsl:variable>
<tr bgcolor="{$color}">
<td width="150">
<xsl:value-of select="@date"/>
</td>
<td>
<a href="makehighlight.php?id={$id}high={$high}">
<xsl:value-of select="headline"/>
</a>
</td>
<td width="150">
<xsl:value-of select="deadline"/>
</td>
<td width="150">
<xsl:value-of select="todofor"/>
</td>
</tr>
</xsl:template>
...
Es erscheint der Link:
<a href="makehighlight.php?id=2high=troubles">
Wird in HTML klar gebildet.
Nur das ist natürlich kein sauber GET-Query.
Parse ich mit '&'
<a href="makehighlight.php?id=2&high=troubles">
so erhalte ich
XML parser error 4: not well-formed (invalid token).
Hat jemand eine Idee wie ich den Parser austricksen kann.
Vielen Dank!
Blaster
Kommentar