php - Mysql Table Updated after logout -


please me want update mysql query after session destroy. have logout.php file in set update query after seesion destory not updated please tell me possible in advance

try code, hope help.

<?php session_start(); if(session_destroy()) {    $sql="your query"; }  else{ exit; } ?> 

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -