Um....
Put session_start() at the top of include.php
Put session_start() at the top of index.php and require include.php
From the manual:
As of PHP 4.3.3, calling session_start() while the session has already been started will result in an error of level E_NOTICE...
That was my point.
Luckily for you:
...Also, the second session start will simply be ignored.
So that's obviously not your problem, but my point still remains valid. You only need to start the session once.