1
0
Fork 0

initial commit

This commit is contained in:
fanir 2015-11-13 23:51:46 +01:00
commit 1cc4bf3572
254 changed files with 63622 additions and 0 deletions

3
htdocs/tests/.htaccess Normal file
View file

@ -0,0 +1,3 @@
Order Allow,Deny
Deny from All

15
htdocs/tests/test_db.php Executable file
View file

@ -0,0 +1,15 @@
<?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);
}