Well cfdump tells you what the data type is. If you don't know how to use a struct, then I'd suggest reading the documentation that covers structs and other variable types as it is critical you understand those basics. As a simple level, to get the title, you would just use title.value. So if "properties" is the struct:
<cfoutput>#properties.title.value#</cfoutput> Notice the "dot notation". You can also use brackets: <cfoutput>#properties["title"]["value"]#</cfoutput> Again though - if this is greek to you - do some reading in the docs. You won't regret it. On 8/15/07, [EMAIL PROTECTED] [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Thank Ray, > > All, I'm not exactly how to read my cfdump and how to extract the data from > each > element in the struct. Can anyone give me a few more exmaples based on this > example? > > http://h129823.cf8beta.com/cf8/cffeed.cfm > > There are multiple stores in the feed, how do I display each of these? > > THanks > > D > > >CFDUMP is your friend. If you dump myProps, you will see myprops.title > >is a struct. You want myprops.title.value. > > > >On 8/14/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > >-- > >=========================================================================== > >Raymond Camden, Camden Media > > > >Email : [EMAIL PROTECTED] > >Blog : www.coldfusionjedi.com > >AOL IM : cfjedimaster > > > >Keep up to date with the community: http://www.coldfusionbloggers.org > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active programmers and developers. http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648 Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286291 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

