Ask a Question related to Coldfusion Database Access, Design and Development.
-
otowny407 #1
Getting CFOUTPUT to Repeat
Hi, I have a database that holds a Table called Authors. I also have a table
called Pub_Info which holds a lot of publications written by these authors. My
dilemma is when i query the database for the publication Title, LInk to
Publication (pdf format), and Author's Name, i get all the Publications from my
database, but it only prints 1 author's name. Each publication has multiple
authors. How can i get it to where all of the author's names are printed on
the screen?
otowny407 Guest
-
background-repeat: repeat-x in HTML? Please help!
I want to have a "centered page" look full screen...I have made them using layers and CSS but if I need it to work in most browsers how do I do the... -
Cfoutput help!!!
I am trying to figure out how to output records from a query that is returing 2 distinct table rows from each query. THe out put needs to look like... -
cfoutput and css
I declare an entire document within a <cfoutput> </cfoutput> section. I am trying to insert the following css style descriptor into the code: ... -
cfoutput and cfloop
Hi all, well this is my question: I want to show 2 or more different sets of record sets but one or more of them have to be nested on the first,... -
<cfoutput>
Hi. I'm trying to rename a file but I get an error message. My code looks someting like this: <cfset source='C:\MyDocs\old.doc'> <cfset... -
paross1 #2
Re: Getting CFOUTPUT to Repeat
If you do something like <cfoutput>#query_name.column#</cfoutput> you are only
going to get one value. On the other hand, if you do <cfoutput
query="query_name">#column#</cfoutput> you will loop through each row returned,
and see all of your data. You can also use the query attribbute in cfloop, but
cfoutput should work just fine.
Phil
paross1 Guest



Reply With Quote

