zkt24-sk1/logout.php

11 lines
136 B
PHP
Raw Normal View History

2024-05-06 10:30:03 +00:00
<?php
session_start();
session_destroy();
echo"<script>alert('Logout Successfuly');window.location.href='login.php';</script>";
?>