like this <cfparam name="url.x" default="0">...
# adobe
g
like this <cfparam name="url.x" default="0"> <cfset x = 20> <cfset form.x = 40> <cfdump var="#x#">
m
you should be getting 20 there, are you not?
you are setting three different things. the unscoped lookup is finding variables first. for the scopes you provided, it is using the sequence of variables, url, form when trying to locate.
g
Correct but the behaviour was weird when I expected confusion to return me variable value but it keep returning me 0