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 abbrevation of PHP?
Which php framework is in demand?
Why triggers are used in mysql?
What is the difference between mysql_fetch_object and mysql_fetch_array?
what is the difference between mysql_fetch_array() and mysql_fetch_row()?
When use javascript vs php?
How can you increase the maximum execution time of a script in php?
Tell me what are the different types of errors in php?
How to create a session? How to remove data from a session?
Why super () is used in java?
what is php stands for?
23 Answers Infosys, Satyam, Torque Infotech,
Tell me what does the array operator '===' means?