At the top of my index page a set a session using:
$_SESSION[\'language\'] = \'english\';
and when I echo $_SESSION[\'language\'] it echoes \'e
You must call session_start() before you have access to the $_SESSION super global
session_start()
$_SESSION
PHP session_start() docs