Hey there I having some problems returning values from XML.GetValue when the Value is nested in another array.
EG:
I loop to get the data the first time but then I am having a problem to get the second
table
XML.GetValue('xml/seed:'..CountSeed..'/id') <-- Works
XML.GetValue('xml/seed:'..CountSeed..'/source/fetch:'..CountFetch..'/id') <-- dose not work.
So how do I return the second lot of data within the table ?
EG:
PHP Code:
XML
>Seed
>ID<
>URL<
>Source
>Fetch
>ID<
>URL<
<Fetch
>Fetch
>ID<
>URL<
<Fetch
>Source
<Seed
>Seed
>ID<
>URL<
>Source
>Fetch
>ID<
>URL<
<Fetch
>Fetch
>ID<
>URL<
<Fetch
>Source
<Seed
>xml
table
XML.GetValue('xml/seed:'..CountSeed..'/id') <-- Works
XML.GetValue('xml/seed:'..CountSeed..'/source/fetch:'..CountFetch..'/id') <-- dose not work.
So how do I return the second lot of data within the table ?
Comment