I'm trying to parse XML feed with SimpleXML, here is a chunk of the XML tree:
<item> <game:name>Tetris</game:name> <game:desc>Way Cool Game</game:desc> <size>5mb</size> </item> Well actually, I can succesfully access 'size' with something like that: $item->size, but how do I get value? Of course I can't call like that: $item->game:name, and I don't know how what goes after ':' is called. Is it a parameter, attribute or what?
Thanks for advance!