need help with display table in cfoutput query
Hi,
i need to do this form of outputting cfoutput query.
<cfquery name="myquery" datasource="mydsn">
select email,phone from mytable
</cfquery>
<table>
<tr>
<cfoutput query="myquery">
<td>
#myquery.email#<br/>
#myquery.phone#<br/>
</td
</cfoutput>
</tr>
</table>
but i need output like this like for every 2 records i need new row.
Example.
Now getting my outpout like this
1 2 3 4 5 6 7
i want my output like this
1 2
3 4
5 6
7
Please help me
Thanks.
