How to pass a dynamic string through href in xsl style sheet.
Here follows the code:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<head>
<title>Ministry</title>
</head>
<body>
<xsl:for-each select="Ministry/min">
<a href='ministry.php'>
<xsl:value-of select="name"/></a>
</xsl:for-each>
</body>
</xsl:template>
</xsl:stylesheet>
I need to pass the same value that appears in between the href tags to the next page as query string.