Connection Failed:Access denied for user ‘epiz_20771373’@‘192.168.2.195’ (using password: YES)

Respected Sir,
please give me the solution of the above error which i have … i configure everything which you provide already in this post https://infinityfree.net/support/common-mysql-errors/

but nothing happened again the same error please help to make it alive. Thanks in advance
here i past the code

    <?php

$servername = “sql209.epizy.com”;
$username = “epiz_23752707_rms”;
$password = “not given here for …”;
$dbname = “rms”;
$roll = $_POST[“roll”];
$class = $_POST[“class”] ;
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);

This generally means that the database name is not correct. If you entered the database name my_database when creating the database, the full database name looks like epiz_12345678_my_database . You can find the database name in the MySQL Databases menu as well.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.