I'm working on a survey application where i need to display and save the data filled in during the survey at the end but there are no users(e.g. devise) since you can't login.
Example of survey:
Whats your name?
-- [input]
Example of show page:
Hi there [input], here are your results:
I tried saving [input]
in the session but that way the data will be lost after the session ends and i want to keep the data in a database.
Tried googling for a few hours but no real answers to this question. How can i go about this problem, any help in the right direction would be much appreciated.