12 lines
No EOL
98 B
PHP
12 lines
No EOL
98 B
PHP
|
|
<?php
|
|
|
|
//logout.php
|
|
|
|
session_start();
|
|
|
|
session_destroy();
|
|
|
|
header('location:login_form.php');
|
|
|
|
?>
|