I am going nuts trying to parse an XML document. For example if I have the following xml file:
<doc> <name> <first>Daniel</first> <last>Williams</last> </name> <job>Boring</job> </doc>
How do I get the cdata from the elements?
there are some interesting articles about PHP and XML on www.devshed.com. You would need a server which does support those functions. You could also look in the manual under DOM XML, XML and XSLT ... (though the last one requires you to write a XSL file too). There is a short (and probably less interesting) article on my own website www.nightowl.be too.