I want to be able to show some .php files before the user logs in
I know that the reason we do the session is for ones who are users to see the files but is it possible.
I have included the file that connects to teh database
session_start();
$session_uid=$_SESSION['uid'];
if(!empty($session_uid))
{
header("location:index.php");
}