PHP-RechercheEmploi/logout.php

6 lines
76 B
PHP
Raw Normal View History

2024-10-14 14:03:15 +02:00
<?php
session_start();
session_destroy();
header("Location: login.php");
?>