Hi all! I’m building an app for my multi-language recording project.
System will feed scripts of the right language for the users to read and record.
Users are supposed to choose the language they speak during registration.
I have data types of “language”, “script” and “user”
Language: This datatype has fixed entries only, like “Chinese”, “English”, etc.
-name(text)
User:
-Language(language, list of)
Script:
-Content(text)
-Language(language)
So in the registration form of my app, users have one field to choose which languages they speak. It should be a list of static choices, and the result should be stored in their user data under “language” field. But i can’t seem to understand how to set up this dropdown.
Or is it the wrong database setup for my requirement?
Please help me with this.