cgeller100
05-28-2011, 12:30 AM
I am using sessions to store user data, but when I also use a PHP Include statement at the beginning of my file, the sessions do not work. When I comment out the include, the session works fine. Why would the include interfere with sessions and how can I rectify this?
[CODE]
<?php
session_start();
include('../Header.php');
?>
[CODE]
Thank You
[CODE]
<?php
session_start();
include('../Header.php');
?>
[CODE]
Thank You