Hi I have this following segment of XML:
...... <Result number="4" position="1" points="25"> <Driver driverId="button" url="http://en.wikipedia.org/wiki/Jenson_Button"> <GivenName>Jenson</GivenName> <FamilyName>Button</FamilyName> <DateOfBirth>1980-01-19</DateOfBirth> <Nationality>British</Nationality> </Driver> ...... I can use the following easily to get the GivenName:
$item->Driver->GivenName; But when I use:
$item->Driver->FamilyName; I get SimpleXMLElement Object ()
I have looked around and found that it might be something to do with passing it to a string but then I get nothing on screen. Not even SimpleXMLElement Object.
I don't understand as it's a sibling of GivenName and that works.