Files
MovieLog_Server/logout.php
T

5 lines
78 B
PHP
Raw Normal View History

<?php
session_start();
session_destroy();
header('Location: login.php');
exit;