views:

153

answers:

1
+1  Q: 

Game in Django

My general website is in Django. I want to create a subpage in which the following game happens: A word that gets loaded from the database gets shown for 100ms. Afterwards the user has to write out the word and is told whether his answer is right or wrong. This game shall repeat itself ten times while the user is one the page and I want to store afterwards in my database the answers that the user got right.

Which is the best way to solve this problem? Ajax or should I rather use flash? What amount of effort should I expect to program something like this?

+1  A: 

I'd use jQuery to build this. It shouldn't be at all hard.

sblom