Ask a Question related to Coldfusion Database Access, Design and Development.
-
Anna_giallo #1
HELP! Display query results horizontally
with CFquery, the data is display in the table vertically, is there any way I
could display it horizontally?
example: #firstname#
#firstname#
#firstname#
I would like to display : #firstname# #firstname# #firstname#
HELP!
Anna_giallo Guest
-
Query results don't display properly in resultstable. IGNORE PREVIOUS
I usually create place holders for the empty columns. <cfoutput query="q_rpt" group="fk_Obj_ID">... -
Query results don't display properly in results table.IGNORE PREVIOUS
:disgust; I need to display the results of a query. The query runs properly. My problem is having specific results display in specific locations in... -
Query results don't display properly in results table.
:disgust; I need to display the results of a query. The query runs properly. My problem is having specific results display in specific locations in... -
Display query results in iframe not a table
Hi Problem: I am previewing a PowerPoint slide show in a web page iframe. I would like to be able to link the iframe somehow to a database of... -
Display query results on multiple lines?
Response.Write ("<TR><TD>") Response.Write (objRS.Fields("Title") & ", ") Response.Write (objRS.Fields("Name") & ", ") Response.Write... -
philh #2
Re: HELP! Display query results horizontally
Search for "currentrow mod" in these Forums. The technique is to create TD
cells for each column in the output, and insert a TR when the currentrow modulo
matches the number of columns you want to display.
Post some code if you have some so we can see what you're trying to accomplish.
philh Guest
-
jorgepino #3
Re: HELP! Display query results horizontally
<table>
<cfoutput>
<tr><td></td></tr>
</cfoutput>
</table>
<table>
<tr>
<cfoutput>
<td></td>
</cfoutput>
</tr>
</table>
jorgepino Guest



Reply With Quote

