The best way is to have a single file included in all of your files at the top:
include_once("include/session.php");
In that file have a session variable -- $_SESSION["Auth"] for instance, and by default set it to 0. Later in that file, have an if statement:
if( !$_SESSION["Auth"] )
Then redirect to a login.php page.