Newer
Older
<table class="table table-striped">
<tr>
<th align="center">Cron</th>
<th align="center">Laufzeit</th>
<th align="center">URL</th>
</tr>
<?php
$crons = db_query("SELECT * FROM " . $db_prefix . "_crons");
while ($crontabelle = mysqli_fetch_array($crons)) {
$i++;
$row = ($i % 2 == 0) ? 0 : 1;
echo '
<td valign="middle"><b>' . $crontabelle['bezeichnung'] . '</b><br>
<i>ID: ' . $crontabelle['id'] . '</i>
</td>
<td align="center" valign="middle">
<font color="#000080">' . date("d.m.Y - H:i:s", $crontabelle['laufzeit']) . '</font>
</td>
<td align="center" valign="middle">
<a href="../cron.php?id=' . $crontabelle['id'] . '&pw=' . $cron_pw . '" target="_blank"><img src="images/gruen.gif" width="15" height="15" border="0" alt="Ausführen"></a>
</td>
</tr>
';
}
?>
</table>
<?php foot(); ?>