C
cicciottino
i have in a xml file this
<post>
<titolo>Forno solare</titolo>
<data>28/08/2006</data>
<testo>
Ecco il mio forno solare, bla , bla, bla , bla, bla , bla....
</testo>
</post>
and in xsl file this:
<div id="post">
<xsl:for-each select="news/post">
<xsl:sort data-type="text" select="data" order="descending"/>
<h1><xsl:value-of select="titolo" /></h1>
<h2><xsl:value-of select="data"/></h2>
<p><xsl:apply-templates select="testo"/></p>
</xsl:for-each>
</div>
i would like then in the text element when is formatting, i can see
some text a pic some text a pic some text a pic and so on and so on
how to do for get this?
sorry for my english
<post>
<titolo>Forno solare</titolo>
<data>28/08/2006</data>
<testo>
Ecco il mio forno solare, bla , bla, bla , bla, bla , bla....
</testo>
</post>
and in xsl file this:
<div id="post">
<xsl:for-each select="news/post">
<xsl:sort data-type="text" select="data" order="descending"/>
<h1><xsl:value-of select="titolo" /></h1>
<h2><xsl:value-of select="data"/></h2>
<p><xsl:apply-templates select="testo"/></p>
</xsl:for-each>
</div>
i would like then in the text element when is formatting, i can see
some text a pic some text a pic some text a pic and so on and so on
how to do for get this?
sorry for my english