14 lines
185 B
PHP
14 lines
185 B
PHP
|
#!/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();
|
||
|
?>
|