Answers for "session_destroy function is used to"

PHP
3

php delete session

session_destroy(); // To delete whole session
// OR
unset($_SESSION['myVar']); // To delete a session var
Posted by: Guest on January-24-2020

Code answers related to "session_destroy function is used to"

Browse Popular Code Answers by Language