Question
CFLOOP Help
I have a simple loop
<cfloop list="#prodDetails.matchProds#" index="matching" delimiters=",">
<cfoutput>
<a href="/catalog/?ProductID=#matching#&Category=#URL.category#"> #matching#</a><br />
</cfoutput>
</cfloop>
That currents displays results as:
Value 1
Value 2
Value 3
etc...
I am trying to figure out how to make the out appear as such:
Value 1 Value 2
Value 3 Value 4
Value 5 etc...
Any help here would be much appreciated. Regards.
<cfloop list="#prodDetails.matchProds#" index="matching" delimiters=",">
<cfoutput>
<a href="/catalog/?ProductID=#matching#&Category=#URL.category#"> #matching#</a><br />
</cfoutput>
</cfloop>
That currents displays results as:
Value 1
Value 2
Value 3
etc...
I am trying to figure out how to make the out appear as such:
Value 1 Value 2
Value 3 Value 4
Value 5 etc...
Any help here would be much appreciated. Regards.
