holtgrewe
10-28-2009, 02:21 PM
There didn't appear to be much in the forum on XML or I just missed it...
This works fine:
-- Gets the second customer's second phone number.
customer_phone = XML.GetValue("database/customer:2/phone:2");
This doesn't work:
-- Gets the second customer's second phone number.
x=2
customer_phone = XML.GetValue("database/customer:x/phone:x");
I am having issues with looping thru XML...the XML indexing doesn't seem to work with anything other than an actual integer...
any ideas...?
This works fine:
-- Gets the second customer's second phone number.
customer_phone = XML.GetValue("database/customer:2/phone:2");
This doesn't work:
-- Gets the second customer's second phone number.
x=2
customer_phone = XML.GetValue("database/customer:x/phone:x");
I am having issues with looping thru XML...the XML indexing doesn't seem to work with anything other than an actual integer...
any ideas...?