Adding query class

This commit is contained in:
2023-05-27 14:28:06 -05:00
parent 8b5782c5de
commit 52c65cea85
4 changed files with 69 additions and 3 deletions

View File

@@ -1,6 +1,9 @@
<?php
include("../../Libraries/test.php");
include("../Libraries/table/class.php");
$db = new SQLite3("../../webcron.db");
$table = new Table("crontabs");
test_func();
$table->Load($db, "");
echo $table->get_html();
?>