Help for this page

Select Code to Download


  1. or download this
     <ul>
      <xsl:for-each select="message">
       <li><xsl:value-of select="current()" /></li>
      </xsl:for-each>
     </ul>
    
  2. or download this
     @messages = (
                   <xsl:for-each select="message">
                     "<xsl:value-of select="current()" />",
                   </xsl:for-each>
                 );