I have a static website and my client wants a restricted section, he wants to have a single user and password to grant certain customers access to additional information. I'm doing this by hand-code for the first time, I usually work with a CMS but this project is too far along to consider changing now, so that's not an option.
I already implemented a very basic login and it works fine. I created a db and inside a table with only a username and password for testing purposes. I do a query of my HTML form inputs and if both fields match the table rows I redirect to restrictedsection.php. However, once the user has entered this section the URL (php file) is visible and others are able to access it. How can I prevent this? or is there a different/better way to accomplish what I need?
Thanks in advance.