> Michael Alaimo wrote:
>> Hello All,
>>
>> I have an XML document that has elements as such:
>>         <Query:Expression>
>>           <Query:ResourceID>
>>             <Query:Equal>Test/Query:Equal>
>>           </Query:ResourceID>
>>         </Query:Expression>
>>
>>
>> I cannot figure out how to access these with simple xml.  I am not
>> opposed
>> to a DOMDocument solution either.
>>
>> Would anyone know what to do in this case?  I think the problem is the
>> :.
>>
>> Regards,
>>
>> Mike
>>
>>

>
> What's the entire XML document?  You need a xmlns declaration as Query
> is a namespace.
>
> --
> Thanks!
> -Shawn
> http://www.spidean.com
>
>

I was able to solve this by using
$ns = $xml->getNamespaces(true);
foreach ($xml->children($ns['Query']) as $Query) {
  echo $Query->Where;
}

Thanks for the help Shawn.

Mike



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to