to post your code. It should look something like this:
<cffunction ...>
<cfargument ...>
<cfargument ...>
<cfset var x = 1>
<cfset var y = 2>
</cffunction>
All var scope lines MUST come after the cfargument tags and before any
"real" code, so you CAN'T do this:
<cfset y = now()>
<cfset var x = 1>
Instead, you must do
<cfset var x = 1>
<cfset y = now()>
<!--- rest of the function --->
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

