I want to use xslt to write php. Here's a stripped down hello world example of what I mean.
xml:
<php-echo value="hello world!"/>
xslt:
<xsl:template match="php-echo">
<?php echo '<xsl:value-of select="@value"/>' ?>
</xsl:template>
Ofcourse there are a lot of problems with this. Any sudgestions?