Loop through a query and replace html elements with their codes
<cfloop index="k" list="#MyQueryName.columnlist#">
<cfset thisValue = MyQueryName[k][1]>
<cfset thisValue = replace(thisValue,"<","<","ALL")>
<cfset thisValue = replace(thisValue,">","> ","ALL")>
<cfset thisValue = replace(thisValue,"'","´","ALL")>
<cfset thisValue = replace(thisValue,'"',""","ALL")>
<cfset MyQueryName[k][1] = thisValue>
<cfset my_struct[k] = MyQueryName[k][1]>
</cfloop>