Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
You are doing something wrong, but we need to see more code to know what it is – secretformula Jun 3 '12 at 17:57
Did you mean if(!$session->is_logged_in()) {? – William Jun 3 '12 at 17:58
No; if logged, redirect to index.php – kalaba2003 Jun 3 '12 at 18:00
What does "Didn't work" mean? Do you get errors? Does it run the rest of the page as normal? – Quentin Jun 3 '12 at 18:01
1  
Can you show the code for is_logged_in and redirect_to please. – William Jun 3 '12 at 18:02
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.