Can someone help me out for the following solution:
<xsl:variable name="filterByNameA" select="*/person[firstName=$fname] "/>
I want to do this if possible
<xsl:variable name="filterByNameA" select="*/person[firstName=$fname] and */person[secondName=$fname]"/>
In other words, I need to have two conditions in one variable in order to get me all of the person elements that have the same firstName and secondName.