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();
|
2023-05-20 20:15:39 +00:00
|
|
|
?>
|