Wallos v0.9

This commit is contained in:
ellite
2023-10-05 22:39:37 +02:00
commit 63ce5b099a
166 changed files with 6337 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
$databaseFile = 'db/wallos.db';
$db = new SQLite3($databaseFile);
$db->busyTimeout(5000);
if (!$db) {
die('Connection to the database failed.');
}
// $db->close();
?>