Let's say I have www.example.com for hosting multiple PHP projects that completely unrelated e.g. www.example.com/app1 , www.example.com/app2. Every projects mades by different person so app1 owner cannot modify app2 project.
The problem is when app1 login/logout , it affects on app2. So, How do I separate a session for different project ? or I need to set a root path at somewhere...
Now my project has only
session_start();
at the top of every page.
P.S. Sorry for bad English.