disctrict

This commit is contained in:
Walter Hupfeld
2024-02-21 14:31:28 +01:00
parent d918e97203
commit 1f44c21d69
6 changed files with 17 additions and 8 deletions

View File

@@ -1,4 +1,5 @@
<?php
exit();
session_start();
$strLoginName=(isset($_SESSION['user'])) ? $_SESSION['user'] : "" ;
$boolLogin = (!empty($strLoginName));
@@ -7,8 +8,6 @@
}
date_default_timezone_set('UTC');
const DB_FILENAME = "../db/locations.db";
$db = new SQLite3(DB_FILENAME);
$strSQL="ALTER TABLE location ADD COLUMN defect INTEGER";
$db->exec($strSQL);