Ok, so i need some help with a logic problem that I'm having with some coding a did. Here is the scenario:
I built an online course for a customer comprised of 50 pages. Each page is timed, and the student must stay on the page for that amount of time, and click the "next page" button to get credit for the page (current page is stored into the database). I also have a course-outline that the students can click on at any time to see how far they have gotten in the course.
Now, here is where my problem occurs. Let's say we have user "A" that logs into the course and gets all the way to page 49. If they click on the course-outline it shows they have completed the course all the way to page 49.
If they open a new window and log in as user "B", the session then gets opened under user "B". However, if you go back to the previous window and click on page 49 on the course-outline, then click the "next" page button, the user "B" gets bumped all the way up to page 50 without having to do any of the other pages.
Anyone have any ideas on how I could prevent this?