Mysql
 sql >> Database >  >> RDS >> Mysql

PHP MySQL non ha potuto connettersi (HY000/2002)

Devi specificare il username e password per il tuo MySQLi connessione.

require_once 'Internal/Var.php';
// Remove the two procedural connection lines here

function create_connection()
{
    // Make sure D_SERVER, D_USER, D_PASSWORD, D_NAME have the correct values
    // These values are probably created in Internal/Var.php
    $conn = new mysqli(D_SERVER, D_USER, D_PASSWORD, D_NAME);

    return $conn;
}

function close_connection(mysqli $con)
{
    $con->close();
}