You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
394 B

<?php
include './functions.php';
$cnn = db__connect();
if(isset($_COOKIE['_token']) && db__rowNum($cnn, "token", "token", $_COOKIE['_token'])){
db__pushData($cnn, "token", array(
"state"=>'0',
"updated_at"=>date("Y-m-d H:i:s", time())
), array(
"token"=>$_COOKIE['_token']
));
}
echo '<script>window.location.href="https://login.yimian.xyz/"</script>';