Kingston_Pendrive/Suli/13.b/Backend/Órai feladat_2024. 10. 15/logout.php

6 lines
144 B
PHP
Raw Permalink Normal View History

2024-11-19 18:04:02 +00:00
<?php
session_start();
unset($_SESSION["user"]);
setcookie("szin", "", time() - 3600);
header(header: "Location: login.php");
?>