Join Slack
Powered by
This is what I have <cfloop query="weight"> ...
# cfml-general
f
Formiko
01/31/2022, 9:09 PM
This is what I have <cfloop query="weight"> <td > <cfoutput query="weight"> #name# </cfoutput></span></td> </cfloop>--->
m
Myka Forrest
01/31/2022, 9:13 PM
What line is the error pointing to? Also, there's no need to loop over the query with
<cfloop>
AND
<cfoutput>
.
👍 1
m
miguel-f
01/31/2022, 9:19 PM
Right! When you use
<cfoutput>
with the 'query' attribute it is the same as using
<cfloop query=""> <cfoutput>
👍 1
miguel-f
01/31/2022, 9:19 PM
You are basically looping over your query within a loop of your query
👍 2
Open in Slack
Previous
Next