Hey, does anyone know how i can use a HTML form to collect data from people and then generate a new XML file on the server with that data in it. Thanks
HTML is just structure, it can't do that at all. Anything server side requires PHP or a similar serverside language.
Yup, have the form post to a PHP or .NET page and collect the data. Instead of storing in a database just point it to an XML file.
Take this code: http://www.barrywise.com/2008/01/generic-all-purpose-php-contact-form-submitter/ And just change the processForm() function. Instead of emailing the results of the form, write them to an XML file.