Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

PHP MYSQL tidak dapat terhubung (HY000/2002)

Anda perlu menentukan username dan password untuk MySQLi . Anda koneksi.

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();
}



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Solusi untuk Memasukkan Intention Locks di MySQL

  2. Implementasi Fungsi Hashing MySQL

  3. Pencarian fuzzy alamat jalan MySQL

  4. php memasukkan array preg_match_all

  5. Bisakah Django ORM melakukan ORDER BY pada nilai kolom tertentu?