I need your help. I need to get the data entered in a webforms and transform to xml
any help will be very useful for my.
greetings for chile!
an example:
I have a contact form that contains name email comments etc. .. what I need, is that when making the submit all this information is stored in an xml file like this:
<form>
<name>Felipe Avila</name>
<email>favila@domain.com</email>
etc
</form>
something like this .. http://xmlfiles.com/articles/michael/htmlxml/default.asp
Typically, you should define the structure of the XML document you want to produce first. That will make writing the code to populate said document much easier. However, if you’re wanting something really generic to generate an XML document for any web form, here’s how you could do so:
Another way to do it: