Question
passing url variables, url stops at first &
We are making a url in a string and putting it in a form tag a lot like this
<cfset a='http://a/b/c?x=3&y=02'>
<cfoutput>
<form action="#a#"method="get">
etc
</form>
</cfoutput>
the url in the browser address box stops at the 1st ampersand in the url string
***how can we fix this?
it is an emergency
