Any help here appreciated
I insert the menu file via SSI statement. Works fine
I add a logout behavior to the menu and I get warning
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/pencils/public_html/interview/client/firm_info.php:8) in /home/pencils/public_html/interview/includes/left_menu.php on line 3
I remove session_start() at the top of the menu file and add it to the top of all pages that employ the includes statement and the above warning disappears.
However, when I click on the logout link I get another warning
Warning: Cannot modify header information - headers already sent by (output started at /home/pencils/public_html/interview/client/firm_info.php:8) in /home/pencils/public_html/interview/includes/left_menu.php on line 15
Line 15 = header("Location: $logoutGoTo");
And it does not open the logout page.
menu page (that is included)
page that menu file is included on