I am new to php, especially for cookie and session, so if I delete the session or cookie using
session_unset();
session_destroy();
//for session
setcookie("user", "", time() - 3600);
//for cookie
it will :
1) delete the session or cookie for only one specific visitor that have run the code above
2) or delete all the session or cookie for all visitor
From logic, it should be 1, but I just want to ensure that. anyone who explain that would be much appreciated, thank you.