Shawn McKenzie wrote:
> Please keep this on list.
> 
> The URI for the namespace is important.  Something like (not tested):
> 
> |  ||// use URI for Query namespace|
> |  foreach ($xml->children('http://www.example.com/something') as $Query) {
>       echo $Query->Where;
>   }
> ||
> |
> Michael Alaimo wrote:
>>> What's the entire XML document?  You need a xmlns declaration as Query
>>> is a namespace.
>>>     
>> The document is valid XML.  xml_parse_into_struct returns an array with
>> all of the values.  Its just so much work to get it to work.
>>
>> SimpleXML wont let me access $xml->Query->{Query:Where}. for example
>>
>>   
>>> --
>>> Thanks!
>>> -Shawn
>>> http://www.spidean.com

Wow, that came out with some weird pipes in it:

// use URI for Query namespace
foreach ($xml->children('http://www.example.com/something') as $Query) {
    echo $Query->Where;
}


-- 
Thanks!
-Shawn
http://www.spidean.com

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

Reply via email to