I have an idea but don't know is it achieved with views module. Let say I have large web form, I filled it, submited and created xml file which I stored in database. Later I want to take this file from database and display xml elements information by views module help. I just want flexible xml data outputing. Is it possible with views module?

Comments

While you can output XML with

While you can output XML with views, I am not aware of a way for a view to use XML as input.

It also seems to me your approach is limiting. In general terms your form might represent a content type (the Content Construction Kit (CCK) is useful here) and that data is stored as data (not XML) in tables. Between theming and output options with views you can format the output as needed. Storing the information as data allows you to sort and filter the data using SQL, if stored as XML that becomes less flexible and possibly impracticable.

I see... So there is any

I see... So there is any solution for flexible xml data outputing?

The Views Bonus Pack has an

The Views Bonus Pack has an option to export/output XML.

Isn't just xml outputing from

Isn't just xml outputing from created view? Am I wrong?