How can we destroy the session, how can we unset the
variable of a session?
Answers were Sorted based on User's Feedback
Answer / sreenia
the better way of destroying a session is to first unset all
the values of $_SESSION variables individually, and then use
the session_destroy() function
| Is This Answer Correct ? | 17 Yes | 6 No |
Answer / devendrarjadav
session_destroy() function destroys all data registered to
current session. use unset function to destroy varible
specified with session. So to destroy $name registered with
session use unset($name) in your php script.
| Is This Answer Correct ? | 16 Yes | 6 No |
Answer / sri harsha
session can be destroyed by using session_destroy() function
and variable can be unset by unset($_session['name']).
| Is This Answer Correct ? | 11 Yes | 3 No |
Answer / murali
session can be destroyed by using session_destroy() function
and variable can be unset by unset($_session['name']), and
also write like this...
$_session['name']=='';
you can assign null.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / pawan chhabra
// Create a logout.php file then..
<?php
session_start();
header("location:login.php");
session_destroy();
??
| Is This Answer Correct ? | 1 Yes | 3 No |
What is the basic syntax of Php?
How to create the PHP Script to Calculate the Age Using the Inputs Of our Birth date and the Current date?
What is the difference between the include() and require() functions?
What is deffience betwwen get() , Post , Request()
What does $_server means?
How many functions are there in php?
What is a stored procedure in mysql?
Tell me what is the use of the function htmlentities?
What are the different filter functions used to filter a variable?
Which is best framework for php?
How does csrf attack work?
What is use of htmlspecialchars php?