OK, I do not do this often enough to remember the syntax for the following loop sequence:
<cfloop index="i" from="1" to"3" step="1">
<CFQUERY datasource="#datasource#" name="att#i#vals">
SELECT * FROM Attributes
WHERE Attribute = '#attsarray#'
</cfquery>
<cfset selectlist#i# = #ListToArray('att''vals.AttValues')#>
</cfloop>
It is throwing an error on the cfset statement. Not sure if previous statements are correct though.
Thanks....
Chris Scott
The Whole Computer Medical Systems
<cfloop index="i" from="1" to"3" step="1">
<CFQUERY datasource="#datasource#" name="att#i#vals">
SELECT * FROM Attributes
WHERE Attribute = '#attsarray#'
</cfquery>
<cfset selectlist#i# = #ListToArray('att''vals.AttValues')#>
</cfloop>
It is throwing an error on the cfset statement. Not sure if previous statements are correct though.
Thanks....
Chris Scott
The Whole Computer Medical Systems