Well, I have a problem that must be easy to solve.. I have a functions.inc-file where I put my classes and different useful functions.. When I'm checking for login and at the same time sets my session with a session object I get: "Warning: Cannot send session cache limiter - headers already sent" because I am including the functions file.. Is there any easy way to work around this?
"Cannot send session cache limiter - headers already sent"
means you have output non-header data before starting the session.
Allways make sure that session_start() is called before anything is output (echo/print or plain html)
Hmm.. well I saw that now..