Guest User

Untitled

a guest
May 25th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. <table class="lista1">
  2. <tr>
  3. <xsl:for-each select="samochod/opcja">
  4. <td>
  5.  
  6. <xsl:value-of select="@typ"/>
  7. </td>
  8. </xsl:for-each>
  9. <td>Suma</td>
  10. </tr>
  11. <tr>
  12. <xsl:for-each select="samochod/opcja">
  13. <td>
  14. <xsl:value-of select="cena"/>zł
  15. </td>
  16. </xsl:for-each>
  17. <td>
  18. <xsl:variable name="suma">
  19. <xsl:value-of select="samochod/opcja"/>
  20. </xsl:variable>
  21. <xsl:value-of select="suma"/>
  22. </td>
  23. </tr>
  24. </table>
Add Comment
Please, Sign In to add comment