I am making a quiz game and I'm making an admin page where users may add new questions. Therefore a MySQL database is the best way to do it for me.
Now I have a table for questions and another one for answers. Like this:
tblQuestions
questionID
question
level (the level of the question from 1-3)
tblAnswers
answerID
answer
correct (true/false for correct answer)
questionID (the id for the question that the answer belongs to)
What is the best (suggested) way to get these datas into Construct 2? Create a dynamic xml file from php? Import data into an array with AJAX?
I made a static XML to try, and it worked fine, but as I wrote I need a dynamic way to get data from MySQL.