You don't need to.  Every variable inside of a <cfoutput> will be evaluated.

<cfoutput>
#Variables.bob#
#Variables.fred#
#Variables.joe#
#Variables.frank#
</cfoutput>

will all be evaluated.  What I'm assuming you are doing is something like
this:

<cfoutput query="qry1">
    #variable_stuff#
    <cfoutput query="qry2">
        #more_variable_stuff#
    </cfoutput>
</cfoutput>

In this case, do something like this:

<cfoutput>
    #qry1.variable_stuff#
    #qry2.more_variable_stuff#
</cfoutput>

If you need to show all the stuff in the queries, set up <cfloop>s
accordingly.

Todd Ashworth

----- Original Message -----
From: "FARHANAHMAD" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, August 04, 2000 9:20 AM
Subject: cfouput


| how we can group two output. one is nested under other.
|
| thanks


------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to