Hi,
Got a simplexml object as follows:
[Attributes] => SimpleXMLElement Object
(
[key1] => value1
[key2] => value1
[key3] => value1
[list1] => Array
(
[0] => Some info in here
[1] => More info in here
[2] => Extra info in here
[3] => and so on
)
[key4] => value4
)
what’s the easiest way to get all the values fro the Array called list1?
Thanks