15 lines
217 B
PHP
15 lines
217 B
PHP
|
<?php define('__ROOT__', dirname(__DIR__));
|
||
|
|
||
|
require_once __ROOT__.'/autoloader.php';
|
||
|
|
||
|
use \lightdb\core\lightdb;
|
||
|
|
||
|
$sl = new lightdb('subject');
|
||
|
$cl = new lightdb('contact');
|
||
|
|
||
|
echo "New subject survey\nT";
|
||
|
|
||
|
|
||
|
|
||
|
?>
|