I am making an online math test-taking website. An example, without any javascript or functional “submit” button, is available on https://tanishqashringarpu2.wixsite.com/website/copy-of-test-3 .
The questions are stored in a database & displayed in individual repeaters (e.g. 1+7 = _). When the “submit” button outside the repeater, at the bottom of the page, is clicked, a forEachItem() loop calculates the score & saves it to the database of exam instances. The submit button takes us to the result-display page and, there, I access the scores from the database & present them to the user.
I need to send the exam_instance_ID to the next page (result-display page) so I can access the correct exam score to show to the user, since one user is likely to take multiple tests on my website. How do I send this data to the next page?
Please also let me know if there is a different approach to doing this that you think is better. Thank you in advance,