Quiz Game Database
I'm thinking of developing an online competitive quiz game in unity and I don't know where and how to store the question database. I want the questions to be chosen randomly (not a problem for C#) but I want the opponent to answer the exact same questions the other player did. Should I store the database internally in the app or store it somewhere online? I don't know exactly how to implement this. Any help or direction would be very appreciated.
Answer by ChatzigeorgiouGeorge · Feb 24, 2018 at 07:21 PM
Hello, one of the approaches that you could use is to create a database in MySQL (online not internally) and connect through php(?) to that database in order to retrieve random questions and keep score. in order for 2 users to answer the exact same questions (i guess it will have something like a duel mode) you need to create ta table that will hold the quiz and you will serve the same quiz both users.