I've been making an educational website in PHP, and I've decided to password-protect pages to the public unless they're signed in - in this case, students.
The subjects covered are GCSE Maths, English and History, and I want to lock the pages via password.
Options I looked at were:
.htpassword = Not relevant here
Various password protection scripts = they could lock the pages, but people could view all pages - not much use, when, say I want people to enter a DIFFERENT password for DIFFERENT webpages (e.g. you visit the page on GCSE English literature, you use a separate password once logged-in to view it, you visit the page on GCSE Maths algebra, you would enter a different password once logged-in to view it.)
User registration isn't an issue, as because they're students, I'm creating the users and passwords - preventing useless registrations etc.
It's not how to password-protect that's the main issue, it's how to use a different password on every protected page in addition to the user login, so what would you suggest?
I've done my research, but am not sure where to go next with this, so where should I progress from here?
Sorry if it seems complex, it's just this issue is fairly important for me and none of the scripts I found online seemed to fit this, and my PHP coding skills are good for a beginner, but not in the area of securing files in PHP.
(I'd considered a CMS but since the site is a PHP adaptation from former HTML pages, it didn't make sense for the audience it was aimed at - it is an educational site, not a business site, and the website itself is moving servers anyway to a new Apache one.)