Question
How do I put this output into a table ?
I query a table and output using the following :
<cfoutput query="qryAreas" group="state">#state#<br>
<cfoutput group="city"> #site#<br><cfoutput> #zipcode#<br></cfoutput><p>
</cfoutput>
</cfoutput>
Since this is dynamic, the output gives me one column all the way down to the end of the page/screen.
How do I dynamically output this into a table with two or three columns, displaying the same data as above ?
I can probably do individual queries and put each one into a <td> but there has to be a better way to do this dynamically.
<cfoutput query="qryAreas" group="state">#state#<br>
<cfoutput group="city"> #site#<br><cfoutput> #zipcode#<br></cfoutput><p>
</cfoutput>
</cfoutput>
Since this is dynamic, the output gives me one column all the way down to the end of the page/screen.
How do I dynamically output this into a table with two or three columns, displaying the same data as above ?
I can probably do individual queries and put each one into a <td> but there has to be a better way to do this dynamically.
