I've noticed on all the XML examples i've come accros using the "startElement" and "endElement" xml function, only prints the data out in the order it is in the file, which is understandable.
But if you have a layout such as
<book>
<title></title>
<pages></pages>
<author></author>
<publisher></publisher>
</book>
and you still want to process all the items but in a different order such as
<book>
<author></author>
<publisher></publisher>
<title></title>
<pages></pages>
</book>
can you still use the above mentions examples, or do you have to write the processing yourself?
regards,
pgudge