Files
500/user/signout.php
2019-03-30 23:03:43 -04:00

7 lines
296 B
PHP

<?php
require "/home/lukeuxao/public_html/500/global.php";
setcookie("500ID", "", time()-3600, "/500", NULL, true, true);
setcookie("500KEY", "", time()-3600, "/500", NULL, true, true);
setcookie("500TOKEN", "", time()-3600, "/500", NULL, true, true);
header("Location: signin.php");
?>