File size: 357 Bytes
5e7371c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ```php
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "harmonyflow";
try {
$pdo = new PDO("mysql:host=$servername;dbname=$dbname;charset=utf8", $username, $password);
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch(PDOException $e) {
die("Connection failed: " . $e->getMessage());
}
?>
``` |