webcron-site/api/test.php

10 lines
171 B
PHP
Raw Normal View History

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