webcron/test.php

14 lines
185 B
PHP
Raw Normal View History

2023-05-27 20:54:28 +00:00
#!/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();
?>