Instead of controlling session one by one in all files, I want to control session in a header.php which is included in every file. So, on top the header.php I coded :
if($session->is_logged_in()) {//is_logged_in is a function controlling session
echo "logged";
} else {
echo "not logged";
}
index.php here :
<?php define('REALLY_INCLUDED', true);?>
<?php require_once $_SERVER['DOCUMENT_ROOT'].'/includes/initialize.php'; ?>
<?php include_layout_template("index_header.php"); ?>
<?php include_layout_template("sidebar.php"); ?>
<?php include_layout_template("index_content.php"); ?>
<?php include_layout_template("footer.php");?>
index_header.php is here :
<?php require_once $_SERVER['DOCUMENT_ROOT'].'/includes/initialize.php'; ?>
<?php header("Content-Type: text/html; charset=latin5"); ?>
<?php
if(!defined('REALLY_INCLUDED') || !REALLY_INCLUDED) {
exit();
}
if($session->is_logged_in()) {
echo "logged in";
} else {
echo "logged not!";
}
?>
<html>
Here is html code
</html>
some parts of session.php :
private $logged_in=false;
function __construct() {
session_start();
$this->check_login();
}
public function is_logged_in() {
return $this->logged_in;
}
private function check_login() {
if(isset($_SESSION['user_id'])) {
$this->user_id = $_SESSION['user_id'];
$this->logged_in = true;
} else {
unset($this->user_id);
$this->logged_in = false;
}
}
Problem is, when I click the URL index.php, nothing seems in browser. if, I delete the is_logged_in() function, it display page. İf I put is_logged_in() function into index.php and delete from index_header.php, it displays page too. İf, I click the URL index_header.php it displays. Interesting is, it is not included index_header.php with this function. There is no problem in my function.
if(!$session->is_logged_in()) {? – William Jun 3 '12 at 17:58is_logged_inandredirect_toplease. – William Jun 3 '12 at 18:02