15 lines
217 B
PHP
Executable file
15 lines
217 B
PHP
Executable file
<?php
|
|
error_reporting(E_ALL);
|
|
|
|
require_once(dirname(__FILE__).'/../includes/config.inc.php');
|
|
|
|
try
|
|
{
|
|
$db = new PDO(DB_DSN);
|
|
|
|
print("Seems to work just fine\n");
|
|
}
|
|
catch (Exception $e)
|
|
{
|
|
print_r($e);
|
|
}
|