I am attempting to loop through a list of string variables to define the values in a group of checkboxes. However, I am having difficulty writing the correct syntax, as the following syntax produces the output shown:
[CODE=cfm]<cfloop index="tmpVar" list="Str1,Str2 ">
<cfinput type="checkbox" name="myName" value=#tmpVar# />
<cfoutput>#tmpV ar#</cfoutput>...