So suppose the server is sharing then what should I do to prevent it?
To answer your follow up question. You can simply name your session on a specific website using session_name()
before your session_start().
session_name('PROJECT1');
session_start();
this one-liner should do it.