param Qusetion

admin

Administrator
Staff member
Given that "domUser" was passed in as a DOMDocument how do I enumeratethrough multiple nodes.The following only gives me one node. If I change the value-of element to<xsl:value-of select="otherIpPhone"/>nothing is returned.<xsl:param name="domUser"/><SELECT id="selOtherIPphone" name="selOtherIPphone"><xsl:for-each select="$domUser//User/otherIpPhones/otherIpPhone"><OPTION><xsl:value-of select="$domUser//User/otherIpPhones/otherIpPhone"/></OPTION></xsl:for-each></SELECT>
 
Back
Top