Ask a Question related to Coldfusion - Getting Started, Design and Development.
-
flashrx #1
<cfoutput query> and TABLE formatting
HI, I'm trying to output images from a database using <cfoutput query>. That
part works fine. But the images display all in one column, one underneath the
other. I want to get them to display 2 next to each other, then go to the next
table row, display two more, and so on, until all images are displayed. I
can't seem to figure out how to do this. The code I have below outputs
duplicate images next to each other instead one after the other...anyone know
how to do this?
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<cfoutput query="myCenterCategories">
<tr>
<td><img src="#myCenterCategories.categoryImage#"></td>
<td><img src="#myCenterCategories.categoryImage#"></td>
</tr>
<tr>
<td>#myCenterCategories.category#</td>
<td>#myCenterCategories.category#</td>
</tr>
<tr>
<td>#myCenterCategories.categoryPrice#</td>
<td>#myCenterCategories.categoryPrice#</td>
</tr>
<tr>
<td>#myCenterCategories.categoryDescription#</td>
<td>#myCenterCategories.categoryDescription#</td>
</tr>
</cfoutput>
</table>
It's obvious to tell why my images are DUPLICATING from the above code...but
that's the DISPLAY format I want. How do I get 2 records next to each other
and then go to the next row automatcially and display two more records....and
so on?
flashrx Guest
-
question about SQL query and cfoutput with INNER JOIN
I have a query that pulls data from two related tables (an Article Table and a Photo table, linked by ArticleID) Lets say i have 3 photos that are... -
CFOUTPUT QUERY rowcount = 0
Hello, I have a query which return 0 row. I have a CFOUTPUT QUERY which try to output my query. Coldfudion enter in the CFOUTPUT once EVEN if my... -
includes mess up table formatting
Not sure if this is OT - if so xcuse me I have a table with 3 pull down menus next to each other in a cells. I make the 3 pull down menus... -
Cannot put <cfoutput> around a <select> statement usinga query.
<select name="t#this_tourn#_course_id"> <cfoutput query="get_courses"> <option value="#course_id#"> #course_name# - Par #par#</option> </select>... -
Multiple-row table formatting of results
Hi all, This is probably a simple one if you know what you're doing, but I could use some code to work from. I'd like to write a script that... -
TA-Selene #2
Re: <cfoutput query> and TABLE formatting
You need to determine dynamically when to begin/end the rows: <table
width='100%' border='0' cellspacing='0' cellpadding='0'> <cfoutput
query='myCenterCategories'> <cfif CurrentRow MOD 2 EQ 1> <tr> </cfif> <td><img
src='#myCenterCategories.categoryImage#'></td> <td><img
src='#myCenterCategories.categoryImage#'></td> <cfif CurrentRow MOD 2 EQ 0>
</tr> </cfif> <cfif CurrentRow MOD 2 EQ 1> <tr> </cfif>
<td>#myCenterCategories.category#</td> <td>#myCenterCategories.category#</td>
<cfif CurrentRow MOD 2 EQ 0> </tr> </cfif> <cfif CurrentRow MOD 2 EQ 1> <tr>
</cfif> <td>#myCenterCategories.categoryPrice#</td>
<td>#myCenterCategories.categoryPrice#</td> <cfif CurrentRow MOD 2 EQ 0> </tr>
</cfif> <cfif CurrentRow MOD 2 EQ 1> <tr> </cfif>
<td>#myCenterCategories.categoryDescription#</td>
<td>#myCenterCategories.categoryDescription#</td> <cfif CurrentRow MOD 2 EQ 0>
</tr> </cfif> </cfoutput> <cfif myCenterCategories.RecordCount MOD 2 EQ 1>
<td></td> <td></td> <td></td> </td> </cfif> </table>
TA-Selene Guest



Reply With Quote

