
Untitled
By: a guest on
Jun 26th, 2012 | syntax:
None | size: 0.51 KB | hits: 15 | expires: Never
INSERT INTO gamequestions (id, gameid, question) VALUES (
1, 1, "question text here"
);
INSERT INTO gamequestions (id, gameid, question) VALUES (
2, 1, "question 2 text here"
); ...
INSERT INTO gameanswers (questionid, nquestionid, label, imagefile, descr) VALUES (
1, 2, "go from question 1 to question 2", "image file", "extra description"
);
INSERT INTO gameanswers (questionid, nquestionid, label, imagefile, descr) VALUES (
2, 0, "end the game after question 2", "image file", "extra description"
);