Moving from another repo.

This commit is contained in:
2024-08-16 10:14:47 -05:00
parent ac30bc19d8
commit c3328c65b0
19 changed files with 5529 additions and 91 deletions

27
settings.php Executable file
View File

@ -0,0 +1,27 @@
<?php
ini_set('display_errors',1);
error_reporting(E_ALL);
$sitesettings = new SQLite3('settings.sqlite');
$getName = $sitesettings->query('SELECT description FROM site WHERE id = 1');
while ($row = $getName->fetchArray()) {
$SiteName = $row['description'];
}
$getSubName = $sitesettings->query('SELECT description FROM site WHERE id = 2');
while ($row = $getSubName->fetchArray()) {
$SubName = $row['description'];
}
$getURL = $sitesettings->query('SELECT description FROM site WHERE id = 3');
while ($row = $getURL->fetchArray()) {
$SiteURL = $row['description'];
}
?>