> > <cfloop collection="#CGI#" item="i"> > > <cfoutput>#CGI[i]#</cfoutput><br> > > </cfloop> > > Ah! Helpful, thanks. Is there a way to refer to, and thus > show, the variable names? (None of the values looks anything > like my AUTHORIZATION header.)
Despite the fact that you've already solved your problem, I'll answer this anyway. I typed out that loop quickly, without paying too much attention. Here's a more useful version of the CFOUTPUT line from above: <cfoutput>#i#: #CGI[i]#</cfoutput><br> Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more information! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193659 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

