webcron/test.php
2023-05-27 15:54:28 -05:00

14 lines
185 B
PHP
Executable File

#!/usr/bin/php
<?php
require('Site/Libraries/table/class.php');
$table = new Table("crontabs");
$db = new SQLite3("webcron.db");
$table->Load($db, "");
echo $table->get_html();
?>