';
echo '
Not logged in. Redirecting in 3 seconds...
';
}
// Everything below this point in the file is secured by the login system
// We can display the user's username to them by reading it from the session array. Remember that because
// a username is user submitted content we must use htmlentities on it before displaying it to the user.
$username = htmlentities( $_SESSION['user']['UserName'], ENT_QUOTES, 'UTF-8');
$firstName = get_user_first_name_by_username( $username )[0];
if( $firstName != NULL )
{
echo 'Hello ' . $firstName['FirstName'] . '!
';
}
else
{
echo 'Hello '. $username . '!
';
}
?>
Geaux Tigers!!!
Home
Edit Account
Logout