I have a query that looks something like this:
<cfquery name="AFX" datasource="xxx">
Select #form.selectA#, #form.select1#, #form.select2#
from TblUniforms
Where (#form.selectA# like '%#form.text#%')
</cfquery>
The form variables come from the previous page and are submitted by the user. The query works when I dump it but how do I output it for the user? I normally create a table and loop through the row but I don't know what will be in the row.
<cfquery name="AFX" datasource="xxx">
Select #form.selectA#, #form.select1#, #form.select2#
from TblUniforms
Where (#form.selectA# like '%#form.text#%')
</cfquery>
The form variables come from the previous page and are submitted by the user. The query works when I dump it but how do I output it for the user? I normally create a table and loop through the row but I don't know what will be in the row.