keeping track of session data

Hi,
I am trying to design a page where the user first enters their personal information then goes to the next page where they are given a ranking and based on the ranking they need to fill a new form (or not). All of the pages are working but how do I query the specific record entered by the user from the previous page (something like session data) right now it displays latest record entered by any user on the last page and not the record entered by that user

Hi Mustafa,

You have 2 options here:

  1. Use a session storage - see here .
  2. Put the data into a database, using wixData.insert() . In this case, you should add the username to the data (if you have wix users for your site, use ’ wixUsers.getEmail() '). then, use wixData.query() on a page in order to get data submitted by a user.

Good Luck,

Liran.