I'm working on a basic system that sits behind an HTTP basic auth username/password. The client would like certain actions only to be performed by a certain type of user. I could create a whole login system in PHP, but would prefer to keep it simple and just use HTTP basic auth again.
So can I have a general username/password for access to the system, and then prompt for a lesser-known username/password if the user tries to access a certain page?