PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I have a global include with session_start();
which is on every page.
Now say i have a page putting variables into a session i have to put session_start() on top of that page too but then i get the error along the lines of :
Session already started, ignoring session in (the global include)...on line 2.
I cannot remove the session from include how ever as that is what keeps the UserID in the session to be used when needs be through out the site... ?
What should i do? Have any of you had this similiar issue?