I am able to do this:
<xsl:for-each select="alot of stuff">
<form name="myform" action = "http:path to somewhere.php"
method="post">
<input type="submit" name="insert" value="Boston"/></form>
</xsl:for-each>
But would like to do something like this:
<xsl:for-each select="alot of stuff">
<form name="myform" action = "http:path to somewhere.php"
method="post">
<input type="submit" name="insert" value="<xsl:value-of
select="."/>"/></form>
</xsl:for-each>
I know the latter does not work, so how do I correct it?
Thank you,
--
Bill
Amsterdam, NL
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php