Jump to content

want to show data from Form fields in XML document


Pravin
 Share

Recommended Posts

You say you you are using form-upload.php and form-process.php from Soma, ok, lets simplify a bit the code for our example. Also we are going to create a template and a page.

First step: we create a new file form-xml.php in the templates folder and copypasta the following code into this file :

  Reveal hidden contents

 

Second step: we create another new file _form-process.php in our templates folder (note: the underscore is here to avoid the file being listed as template found) and again we copypasta the following code into this file :

  Reveal hidden contents

 

Third step: we go in the backend, create a new template and choose (check) form-xml.php from the template found listing. Then we go to the page tree, create a page under root page, give the new page a title and we assign form-xml as template.

The final step is to create the folder which hold our XML generated files. I set as arbitrary path - site/assets/XMLFILES - so we go in site/assets and create a folder with the following name: XMLFILES

Now we can open our new page in the browser and play with the form generating XML file.

Result:

<?xml version="1.0"?>
<user_profil>
  <username>root</username>
  <email>root@foo.bar</email>
</user_profil>

 

Edited by flydev
result
  • Like 2
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...