<?php $xml = '<example>YOUR XML NEEDS TO GO HERE</example>'; $xmlWSIN = simplexml_load_string($xml); $xmlArrayCount = count($xmlWSIN); $counter = 0; while ($counter < $xmlArrayCount - 1) { foreach ($xmlWSIN->XmlNode->$counter->adoptableSearch as $output) { echo $output->Name, "<br>\n"; $counter++; } }
You have javascript disabled. You will not be able to edit any code.