Selam PHP'de mysql bağlanmaya çalıştım:
$dns = "mysql:host=localhost;port=3306;dbname=php-mvc-framework;charset=utf8mb4";
$pdo = new PDO($dns,'root',"");
veya
$dns = "mysql:host=localhost;port=3306;dbname=php-mvc-framework;charset=utf8mb4";
$username = "root";
$password = "";
try {
$pdo = new PDO($dns, $username, $password);
} catch (PDOException $e) {
echo "Bağlantı hatası: " . $e->getMessage();
}
ve
Fatal error: Uncaught PDOException: SQLSTATE[HY000] [1045] Access denied for user ''@'localhost' (using password: NO) in D:\xampp\htdocs\index.php:7 Stack trace: #0 D:\xampp\htdocs\index.php(7): PDO->__construct('mysql:host=loca...') #1 {main} thrown in D:\xampp\htdocs\index.php on line 7
böyle aptal saptal bir hata aldım. Halbuki benim mysql şifrem yok ki. 3 yıl önce böyle çalışıyordu.
Not: 127.0.0.1
yapmıştım olmamıştı.