Pracownia_Pogramowania/projektpp/logout.php

9 lines
91 B
PHP

<?php
session_start();
session_unset();
header('Location: index.html');
?>