andi: simplexml -> count geht nicht wie gewünscht

Beitrag lesen

Hi nochmal und Danke!

error_reporting(E_ALL);
  ini_set('display_errors', 1);

Das hab ich gemacht. Ich erhalte einen Haufen Fehlermeldungen (was seltsam ist, denn auf einer anderen Unterseite mit einem andere XML-File hab ich keine Probleme!!).

  
Warning: simplexml_load_file() [function.simplexml-load-file]: XML/customer.xml:12: parser error : xmlParseEntityRef: no name in /home/www/web2/html/kunden/datasource.php on line 68  
  
...  
Warning: simplexml_load_file() [function.simplexml-load-file]: ^ in /home/www/web2/html/kunden/datasource.php on line 68  
vorher  
Fatal error: Call to a member function xpath() on a non-object in /home/www/web2/html/kunden/datasource.php on line 71  

Nochmal das Script mit Zeilennummern:

  
67: if (file_exists('XML/customer.xml')) {  
68: $xml = simplexml_load_file('XML/customer.xml');  
69: echo "vorher";  
70: //var_dump($xml->xpath("/data/customer"));  
71: $counter_x = count($xml->xpath("/data/customer"));  
72: echo $counter_x;  
73: echo "nachher";

Wie gesagt: an anderer Stelle funktioniert es (eigentlich ohne große Veränderung!?!?).

Noch nen Tipp?
Andi