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

10
test_query.php Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/php
<?php
require("Libraries/db/query.php");
$query = new Query("crontabs");
$query->set_limit(-1);
echo $query->get_query_string();
?>