initial commit
This commit is contained in:
commit
1cc4bf3572
254 changed files with 63622 additions and 0 deletions
htdocs/tests
3
htdocs/tests/.htaccess
Normal file
3
htdocs/tests/.htaccess
Normal file
|
@ -0,0 +1,3 @@
|
|||
Order Allow,Deny
|
||||
Deny from All
|
||||
|
15
htdocs/tests/test_db.php
Executable file
15
htdocs/tests/test_db.php
Executable 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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue