Aidan Lister wrote: > I am attempting to put this in my XSL, <a href="<xsl:value-of select="link" > />">, However I get a ton of errors. How do I do this properly?
try something like this: <a href="{link}"></a> or this: <a> <xsl:attribute name="href"><xsl:value-of select="link" /></xsl:attribute> </a> (^untested, but this is the way to do it in xsl..) look here: http://www.w3.org/TR/xslt#dt-attribute-value-template greetz! webwurst -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php