mirror of
https://github.com/Daichimarukana/uwuzu.git
synced 2026-06-04 19:14:41 +00:00
10 lines
214 B
PHP
10 lines
214 B
PHP
<?php
|
|
if( !empty($_POST['logout']) ) {
|
|
// リダイレクト先のURLへ転送する
|
|
$url = '../logout/index.php';
|
|
header('Location: ' . $url, true, 303);
|
|
|
|
// すべての出力を終了
|
|
exit;
|
|
}
|
|
?>
|