Skip to content

Instantly share code, notes, and snippets.

@VictorFursa
Created November 1, 2015 19:26
Show Gist options
  • Save VictorFursa/5286d30e1a9d37ca19c1 to your computer and use it in GitHub Desktop.
Save VictorFursa/5286d30e1a9d37ca19c1 to your computer and use it in GitHub Desktop.
<?php
try
{
$pdo = new PDO("mysql:host=localhost;dbname=joke_db", "root", "");
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$pdo->exec('SET NAMES "utf8"');
}
catch (PDOException $e)
{
$output = 'Невозможно подключиться к серверу баз данных :('. " <br>" .$e->getMessage();
include_once 'output.php';
exit();
}
//$output = 'Соединение с базой данных установлено :) ';
include_once 'output.php';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment