1
0
Fork 0
feedizer-php/htdocs/tests/test_db.php
2015-11-13 23:51:46 +01:00

16 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);
}