I have a system that requires the user to login (or register) for an account before they are able to access their Member \'dashboard\'.
My question is... at what poi
You need to include session_start() on every page where you want the session data to be accessible. And it needs to be called before any other output has been done.
session_start()