I'm making a website where users must log in to view certain content. I accomplished this by setting the server root to C:\WAMP\www\public and putting all the files that users must be logged in to see in a different directory (i.e. C:\WAMP\www\private). How can a logged in user access the files in the private directory if it's not on the web server? Through a require.
<?php
session_start();
$destination = $_GET['d'];
if(isset($_SESSION['loggedInUser']))
require '../private/'.$destination;
else
require 'signinrequired.html';
?>
but there's a problem. If I require a script then it won't be interpreted since it's not in the web root (as explained in the answer here). So how do I fix this or completely redesign the system?
Resolution: I got confused and made up a non-existing problem. It is possible to separate the HTML from the PHP by storing the HTML files not in the server root (aka web root, whatever it's called) and including them using PHP files that are in the server root. Since the HTML files are not interpreted (are not scripts) this works. Since PHP files are interpreted by the server they must be in the server root, but since they are interpreted (and the source code isn't just given to the client) the client can't see the inerworkings of the program. If anyone else somehow got confused as I did then hopefully I explained a bit to unstuck them.