Replies: 1 comment
-
|
Вы используете неправильный хост подключения к серверу БД. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Код: <?php
try {
$connect = new PDO(
'mysql:host=127.0.0.1;port=3306;dbname=phponline1500;charset=utf8',
'root',
''
);
$connect->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
echo "✅ Подключение успешно!";
} catch (PDOException $e) {
echo "❌ Ошибка подключения: " . $e->getMessage();
}
?>
Beta Was this translation helpful? Give feedback.
All reactions