I'm accessing CRM Online 2011 using PHP and FetchXML and I want to get data from a linked entity. I'm using the code from the Developer Training Kit's PHP example. I can retrieve the data from the main entity fine, but I can't figure out how to access the data for the linked entity and I'm not receiving any errors.
This is how I retrieve the response, but it doesn't contain the link entity data:
$response = LiveIDManager::GetSOAPResponse("/Organization.svc", $domainname, $CRMURL, $entityRequest);
Here's the FetchXML for the Link-Entity:
'<link-entity name="new_subdivision" from="new_subdivisionid" to="new_subdivision" visible="false" link-type="outer" alias="city">
 <attribute name="new_city" />
 </link-entity>
Thanks for any help.