Hi there, I'm new to sessions, and I'm having this message displayed in a few pages, what's funny is that just a few pages shows this warning others work just fine:
Warning: Cannot send session cache limiter - headers already sent (output started at /home/exported/viniciusc/public_html/cpdee_new/adm/blocks/teses_selection.php:2) in ../sessions.php on line 3
I'm using a sessions.php page that's included in every page
session.php
<?
session_id();
session_start();
session_register("sID");
session_register("sUser");
session_register("sPerfil");
session_register("sTipo");
?>
And also have a Check login in every page to check if the $sID session var was set.
Any help would be very nice 🙂
Thanks
Vinicius Carvalho