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 |
How cookies are transported from servers to browsers?
Tell me what is pear?
Will a comparison of an integer 12 and a string "13" work in php?
Do you know what is the function mysql_pconnect() usefull for?
Does session expire on closing browser?
What is difference between include,require,include_once and require_once()?
Can php replace javascript?
Explain about the $_GET variable of PHP?
how we can upload and view video files
How to make a file encrypt and decrypt?
What is the difference between the functions strstr() and stristr()?
how to count how many sundays in month?