I am trying to access certain pieces of data from an xml file, here is the problem.
###XML FILE
<products>
<product>
....
....
</product>
<product>
....
....
</product>
etc...
</products>
I know that the piece of data I need is in ($products->product->myProdNode
) I have this mapping (and many others) stored in my database as a string e.g.'product->prodCode
' or 'product->dedscriptions->short_desc
' How can I access this data by using the strings stored in my database.
Thanks for you help in advance!