Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Zugriff verweigert für Benutzer ''@'localhost' (mit Passwort:NO)

Dies liegt daran, dass Sie eine Verbindung mit mysqli_ erstellen und verwenden Sie dann mysql_ um zu versuchen, Ihr Ergebnis abzurufen. Das sind verschiedene APIs.

<?php

/* You should enable error reporting for mysqli before attempting to make a connection */
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);

$mysqli = mysqli_connect('localhost', 'my_user', 'my_password', 'my_db');

/* Set the desired charset after establishing a connection */
mysqli_set_charset($mysqli, 'utf8mb4');

printf("Success... %s\n", mysqli_get_host_info($mysqli));

Beispiel aus dem PHP-Handbuch