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 to link one site backend to another site frontend?
How to convert any type of video formate in flv formate in php can any buddy give me coding.
How many ways we can give the output to a browser?
What is the scope of a variable defined outside a function?
What are the 3 scope levels available in php and how would you define them?
Does php support function overloading?
What is $$ in php?
Why laravel is the best php framework in 2019?
Can you pass an array into a function?
Tell me is it possible to submit a form with a dedicated button?
How escape single quotes php?
How to create a mysql connection in php?