Phpmyadmin does not give access, please help me

Luiz1520

New Member
Messages
7
Reaction score
0
Points
1
Good evening! I have this code so that my website can access the database I created. But whenever I access the website, a message appears saying that access was denied. What could it be and how do I solve it?

My website -> https://cronograma.estudos.x10.bz/

<!--?php
$servername = "localhost";
$username = "ksfiwibw@cronograma.estudos.x10.bz";
$password = "(Hidden)";
$dbname = "ksfiwibw_cronograma";
$conn = new mysqli($servername, $username, $password, $dbname);

if ($conn--->connect_error) {
die("Conexão com o banco de dados falhou: " . $conn-&gt;connect_error);
}
 

mrburnsx

Community Advocate
Community Support
Messages
419
Reaction score
41
Points
28
The credentials you are providing are incorrect.

you were given a set of database credentials when you created the database.
 
Top