Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2015
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" version="1.0">
  3. <xsl:output encoding="UTF-8" indent="yes" method="xml" standalone="no" omit-xml-declaration="no"/>
  4. <xsl:template match="qcm">
  5. <html>
  6. <body>
  7.  
  8.  
  9. <p>Libelle<p>
  10. <th></th>
  11. <th></th>
  12. <th></th>
  13.  
  14. <xsl:for-each select="questions/question">
  15.  
  16.  
  17. <xsl:value-of select="libelle"/>
  18.  
  19. <xsl:value-of select="reponse"/>
  20.  
  21. <xsl:value-of select="reponseok"/>
  22.  
  23. <xsl:value-of select="reponseko"/>
  24.  
  25.  
  26. </xsl:for-each>
  27.  
  28. </body>
  29. </html>
  30. </xsl:template>
  31. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement