<?php
$mysql = new mysqli('localhost', 'root@localhost', '', 'blog');
$mysql->set_charset('utf8');
if($mysql == TRUE){
echo 'banco conectado!';
}else{
echo 'Erro na conexão';
}
include 'Artigo.php';
$artigo = new Artigo();
$artigos = $artigo->exibirTodos();
?>
está dando este erro : Warning: mysqli::__construct(): (HY000/1044): Access denied for user ''@'localhost' to database 'blog' in C:\xampp\htdocs\php alura\blog\index.php on line 3
Warning: mysqli::set_charset(): Couldn't fetch mysqli in C:\xampp\htdocs\php alura\blog\index.php on line 4 banco conectado!