So I create a header php file with the session_start() command in it:
header.php
Code: Select all
session_start();
I then double back and take the session_start statement out of the header and put it into the tops of both the index.php and dashboard.php, and it works fine.
Are there any known issues with putting a session_start statement in a header file?