I have multiple session_start(); but not see any errors. What is the set up difference?
My own page has a seesion_start(), but when I include a page from a 3rd party affiliate system, it has a session_start() too, but I didn't see errors.
Plus, so would it be a good practice, in the future, that always use
if (!isset(session_id()) {
session_start();
}
I could use mass replace to replace on the session_start() with
if (!isset(session_id()) {
session_start();
}
in my own codes to avoid possible errors.
Thanks!