0

I have never used XML before and am trying to loop through the XML and display all the display names in the 'A Team'. The code I am using is outputting 10 zeros and not the names.

The code I am using is attached below along with the feed.

Any assistance is much appreciated!

feed: https://apn.apcentiaservices.co.uk/ContactXML/agentfeed?organisation=se724de89ca150f

 <?php
  
  
  $url = 'https://apn.apcentiaservices.co.uk/ContactXML/agentfeed?organisation=se724de89ca150f';
  $html = "";

$xml = simplexml_load_file($url);
for($i = 0; $i < 10; $i++){
	$title = $xml->organisation['APN']->brand['AllStar Psychics']->pool['A Team']->agent[$i]->display-name;
	
	echo $title;
        
}
echo $html;
  

 
  ?>

4
  • Have you tried ...gent[$i]->{'display-name'}; ? Commented Oct 3, 2016 at 19:59
  • Hi, just tired and that doesn't return anything at all :( Commented Oct 3, 2016 at 20:02
  • The attribute name, not value, goes in the []. Commented Oct 3, 2016 at 20:04
  • are you referring to the $i in the agent attribute? I tried making that change with no result either: $title = $xml->organisation->brand->pool->agent->display-name; Commented Oct 3, 2016 at 20:20

1 Answer 1

1

This might getthe basics you asked for. Not sure if it's what you want. I'm not that good at xpath.

$mydata = $xml->xpath('/organisation/brand/pool[@name="A Team"]//display-name');

foreach($mydata as $key=>$value){
  echo('Name:' . $value .'<br>');
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.