PHP import Data from ZOHO CRm

PHP import Data from ZOHO CRm

Hi there i try to import the customer Data from ZOHO to our PHP app.
I started with the Demo in the Documentation and i got a XML string with all the information back. But i cant extract for example only the name of the customer.

Thats what i did :

$file = fopen("http://crm.zoho.com/crm/private/xml/Accounts/getRecords?ticket=318144677e8e2bc04c1d62fa2dc40f5c&apikey=HedFG4TCmR5-0fLl1QB6cuFXzgbSnk6JkQaMGWeIdlI$", "r") or exit("Unable to open file!");
while(!feof($file))
  {
      $theData=fgets($file);
  }

//$oSXML = simplexml_load_string($string, 'SimpleXMLElement', LIBXML_NOCDATA);
$xml = simplexml_load_string($theData,'SimpleXMLElement',LIBXML_NOCDATA);
foreach ($xml->row as $r)
{
foreach($r->FL as $f)
{
echo $f;
}
    
}  
?>

Regardsless what iam trying $f will be emptry all the time.