> ----- snip -----
> <CFQUERY name="qryGetKidsFromParentsID" datasource="Gymtime">
>         SELECT emer_ref FROM contact WHERE contact_id = #URL.sel#
> </cfquery>
> ----- snip -----
> <CFLOOP index="varLoopKidIDFromParentRelationships"
> list="qryGetKidsFromParentsID.emer_ref" delimiters=",">
> ----- snip -----

You need to put #'s around the list="" attribute. Like:

<CFLOOP index="varLoopKidIDFromParentRelationships"
list="#qryGetKidsFromParentsID.emer_ref#" delimiters=",">

Also, WOW! That's a long index name! Don't you get fairly sick of typing
that?


- Sean

~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Sean Daniels
Manager, Engineering
DealStream.com
[EMAIL PROTECTED]
http://www.dealstream.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tel: 207.439.6030
cel: 978.764.0779



------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
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