<--- --------------------------------------------------------------------------------------- ---- Blog Entry: Ask Ben: Simple Recursion Example Author: Ben Nadel / Kinky Solutions Link: http://www.bennadel.com/index.cfm?dax=blog:1069.view Date Posted: Dec 5, 2007 at 9:40 AM ---- --------------------------------------------------------------------------------------- ---> Dump( obj ){ If obj is simple (string, number, etc). Output value If obj is complex Output name For each attribute Dump( attribute ) Return }