WebKadir adlı üyeden alıntı: mesajı görüntüle
Güncel değil root@localhost diyor hiçbir hosting root mysql erişimi vermez.
Hımm evet
<?php
// Veritabanı bağlantı ayarları
$host = 'localhost';
$db = 'x';
$user = 'root';
$pass = 'x';
$charset = 'utf8mb4';

$dsn = "mysql:host=$host;dbname=$db;charset=$charset" ;
$options = [
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
PDO::ATTR_EMULATE_PREPARES => false,
];

try {
$pdo = new PDO($dsn, $user, $pass, $options);
// Debug modu için
if (isset($_GET['debug'])) {
error_log("Veritabanı bağlantısı başarılı!");
}
} catch (PDOException $e) {
throw new PDOException($e->getMessage(), (int)$e->getCode());
}

evet hocam, host localhost yazıyormuş, ne yazacağım oraya?? hosting sağlayıcımın hangi alanını kullanacağım?