Question
Checking for posted form variables
HI Folks,
I have some dynamically created form fields, and I'd like to check their posted.
<input type="text" name="comment#id#" id="comment#id#" value="" />
I'm checking their posted by using:
<cfloop list="#postedlist#" index="i">
<cfif isdefined(form["comment" & i])>display value</cfif>
</cfloop>
However, I get the error:
Parameter 1 of function isdefined must be a syntactically valid variable name.
Can anyone help?
Thankyou
