Question
Remove unwanted characters before entering database?
I usually remove udnesirable special characters that could be entered in a form before submitting to a database with this
<cfset variable = #Replace(variable,"%","", "all")#>
is there a better way I could simply list all of the unwanted values and just replace from that list?
