11 lines
143 B
PHP
11 lines
143 B
PHP
<?php
|
|
class MyDB extends SQLite3
|
|
{
|
|
function __construct()
|
|
{
|
|
$file = $_SERVER['DOCUMENT_ROOT']."/cassera.db";
|
|
$this->open($file);
|
|
}
|
|
}
|
|
?>
|