Answers for "php condition to checl the session if was delete"

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

Browse Popular Code Answers by Language