Pracownia_Pogramowania/projektpp/logout.php

9 lines
91 B
PHP
Raw Permalink Normal View History

2021-01-08 13:26:29 +01:00
<?php
session_start();
session_unset();
header('Location: index.html');
?>