I'm looking to take input from forms and build an XML file with it:
e.g., from 5 text boxes produce:
<books>
<book_entry>
<title>War of the Worlds</title>
<author>Wells</author>
<bn_link>http://long.string.of.url.stuff</bn_link>
<amazon_link>http://another.long.url<amazon_link>
<note>The most wonderful book in the world</note>
</book_entry>
</books>
Any resources out there? I've been using Phorm to send and log form data. Seems like for to XML would be common enough that I wouldn't have to start completely from scratch on the XML production code.
thanx
ed