Answers for "session_remove function is used to erase all session variable stored in the surrent session."

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
3

unset session in php

session_unset();    //Destrol all session variables
Posted by: Guest on December-04-2020

Code answers related to "session_remove function is used to erase all session variable stored in the surrent session."

Browse Popular Code Answers by Language