Let's say i have a library of questions and answer choices (for survey purpose) in mysql online accessible by a php webserver. The questions are in the following format:
id question choices
1 What is it? robot, car, table, paper
2 Who am I? Joe, Ana, Carl, Pete
....
What i would like to do is when a screen initializes, it dynamicly generates an unknown number of questions (meeting certain criteria) in the following format:
- Who am I?
(radio button) Joe
(radio button) Ana
(radio button) Carl
(radio button) Pete
(a submit button) - .......
I would imagine i will need to inquire mysql database to get the entries in list with question and choices in sublists, it will also need to use the dynamiccomponent extension and radiobutton extension, but generating such dynamic components seems too much of a daunting task with a huge chunk of block in app inventor. I would think that such tasks are very common, just wonder whether there is a specific extension or sort of tool already out there for such purpose in App Inventor. Thanks!