Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

destroy session php

<?php 
 session_start(); // start session
 session_destroy();  // Delete whole session
// OR
unset($_SESSION['username']); // delete any specific session only
?>
 
PREVIOUS NEXT
Tagged: #destroy #session #php
ADD COMMENT
Topic
Name
1+5 =