I am populating a quiz with questions and options using a service (JSON) request. It works like a charm. However, I am confused about how to go about actually answering the quiz.
With PHP, I can submit a form, and all of the POST values are stored in an array that I can then manipulate. How can I "submit a form" using Appery.io? In the past, I've simply mapped field values to local storage variables, which I would then remap to a service request. This works fine when I have a static number of form elements. However, in the case of this quiz, there can be any number of questions and options.
How can I work this out?