You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
217 B
10 lines
217 B
<?php
|
|
|
|
// get current directory of this file
|
|
$dir = __DIR__;
|
|
// get parent directory of this file
|
|
$dir = dirname($dir);
|
|
|
|
// connect to database sqlite database using PDO
|
|
$pdo = new PDO("sqlite:$dir/data/db.sqlite");
|
|
|
|
|