do you mean, something very different and very much more complicated than this :
<table>
<tr><td>your rows that are ALWAYS displayed
.....
</td></tr>
<cfoutput qery=anyquery ...>
<tr><td>#anyquery.value#</td></tr>
</cfoutput>
</table>
???
(this creates as many ROWS as you have records - you can do the same for CELLS :
...
<tr>
<cfoutput qery=anyquery ...>
<td>#anyquery.value#</td>
</cfoutput>
</tr>
) please check FAQ183-874
More details:
I know my Query return 20 rows.
I need show them like
******* *******
******* *******
******* *******
******* *******
******* *******
******* *******
******* *******
******* *******
******* *******
******* *******
I have now like
*******
*******
*******
*******
Tahnks, Albert
use row (sorry i don't remember the exact syntax and the search facility is down, so you'll have to read your doc - look for output query row)
<tr>
<cfoutput qery=anyquery ...> // specify that rows goes row+2
<td>#anyquery.value[row]#</td>
<td>#anyquery.value[row+1]#</td>
</cfoutput>
</tr>
please check FAQ183-874
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.