Files
simak/logout.php
2025-10-10 09:25:05 +07:00

6 lines
85 B
PHP

<?php
session_start();
$_SESSION=array();
session_unset();
session_destroy();
?>