Possible Duplicate:
PHP: Notice: Undefined index where the session variable is defined
PHP: “Notice: Undefined variable” and “Notice: Undefined index”
Ok, so this is the Error:
Notice: Undefined index: overview_id in C:\xampp\htdocs\site\home.php on line 6
And this is my code:
 <?php session_start();
   $sess = $_SESSION["overview_id"];
   if(isset($sess)){
     header("Location: account.php");
   }
 ?>
Any help would be cool.
Thank you.
 
     
     
     
     
    