13 lines
287 B
PHP
13 lines
287 B
PHP
<?php
|
|
global $c;
|
|
|
|
$strDBCSFile = "dbcs.txt";
|
|
$strDBCS = "sqlite:sqlite.db";
|
|
|
|
if (!file_exists($strDBCSFile))
|
|
file_put_contents($strDBCSFile, $strDBCS);
|
|
|
|
$strDBCS = trim(file_get_contents($strDBCSFile));
|
|
$c = new DatabaseConnection($strDBCS);
|
|
?>
|