Reputation: 11
How do I stop users from going back to a previously asked question(Quiz page in php) on pressing the Back Button. All the questions are displayed one after the other and the entire code for this is in the same php file.
Upvotes: 1
Views: 15
Reputation: 375
You need to keep track what the user has answered by using a cookie, session or database.
Upvotes: 1