This is what I have <cfloop query="weight"> ...
# cfml-general
f
This is what I have <cfloop query="weight">    <td >     <cfoutput query="weight">     #name#  </cfoutput></span></td>     </cfloop>--->
m
What line is the error pointing to? Also, there's no need to loop over the query with
<cfloop>
AND
<cfoutput>
.
👍 1
m
Right! When you use
<cfoutput>
with the 'query' attribute it is the same as using
<cfloop query=""> <cfoutput>
👍 1
You are basically looping over your query within a loop of your query
👍 2