Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~81 People Reached
Favorite Forums
Favorite Tags
xml x 1
Member Avatar for solsys

Let say that i have the current xml document <root> <child> <name> </name> <lastname> </lastname> </child> <child> <name> </name> <lastname> </lastname> </child> <child> <name> </name> <lastname> </lastname> </child> ... </root> I use <xsl:for-each select="root/child"> and then type <ul> <li> <xsl:value-of select="name"/> <xsl:value-of select="lastname"/> </li> </ul> The problem is that i …

Member Avatar for xml_looser
0
81