1
0
mirror of https://github.com/Daichimarukana/uwuzu.git synced 2026-06-04 19:14:41 +00:00
Files
2024-12-27 18:11:13 +09:00

10 lines
214 B
PHP

<?php
if( !empty($_POST['logout']) ) {
// リダイレクト先のURLへ転送する
$url = '../logout/index.php';
header('Location: ' . $url, true, 303);
// すべての出力を終了
exit;
}
?>