Code:
<?php

require("/path/to/include/config.php");
require("/path/to/include/function.php");

if (!isset($_SESSION['USERNAME'])) {
	Header("Location: {$config['baseurl']}/login.php");
        exit(0);
}

?>

<html>
<body>
<h1>Welcome to Members Area</h1>
</body>
</html>
THANK YOU!!!!!