>- see footer for list info -< > One of the examples in there, I cannot get to work: > > MyDoc.["employee"]["name"][1] > > which would translate to my code as: > > myXML.["breakfast_menu"]["food"][1] > > I get an error saying 'A CFML variable name cannot end with a "." character.'
The example has incorrect syntax - it has a dot before the bracket. Try this: myXML["breakfast_menu"]["food"][1] _______________________________________________ For details on ALL mailing lists and for joining or leaving lists, go to http://list.cfdeveloper.co.uk/mailman/listinfo -- CFDeveloper Sponsors:- >- cfdeveloper Hosting provided by www.cfmxhosting.co.uk -< >- Lists hosted by www.Gradwell.com -< >- CFdeveloper is run by Russ Michaels, feel free to volunteer your help -<
