You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
445 B
PHP
15 lines
445 B
PHP
<?php
|
|
define("DB_SERVER", "localhost");
|
|
define("DB_USER", "vujovicig");
|
|
define("DB_PASS", "123Kappa123");
|
|
define("DB_NAME", "vujovicig");
|
|
|
|
try{
|
|
$pdo = new PDO("mysql:host=" . DB_SERVER . ";dbname=" . DB_NAME, DB_USER, DB_PASS);
|
|
// Set the PDO error mode to exception
|
|
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
|
} catch(PDOException $e){
|
|
die("ERROR: Could not connect. " . $e->getMessage());
|
|
}
|
|
?>
|