<cfset StructAppend(request, form)>
OR <cfset StructAppend(request, url)>
Handy in the event that you're not sure which scope to expect your "inputs" from.
<cfset StructAppend(request, form)>
OR <cfset StructAppend(request, url)>
Handy in the event that you're not sure which scope to expect your "inputs" from.
URL variables are not all uppercase so items with the "same" name but different case will not overwrite. This means a URL variable could be used to overwrite a form variable, possibly insecure.,