webcron-site/api/test.php

10 lines
171 B
PHP
Raw Normal View History

2023-05-20 20:07:45 +00:00
<?php
2023-05-27 19:28:06 +00:00
include("../Libraries/table/class.php");
$db = new SQLite3("../../webcron.db");
$table = new Table("crontabs");
2023-05-20 20:07:45 +00:00
2023-05-27 19:28:06 +00:00
$table->Load($db, "");
2023-05-20 20:07:45 +00:00
2023-05-27 19:28:06 +00:00
echo $table->get_html();
?>