githubtrue/cron_test/index.php @ master
1 |
<?php
|
---|---|
2 |
|
3 |
require_once "cron.php"; |
4 |
require_once "logging.php"; |
5 |
|
6 |
echo "<h1>Zkouška cronu</h1>"; |
7 |
echo "<p>Spouštím script:</p>"; |
8 |
|
9 |
cron(); |
10 |
|
11 |
echo "<p>KONEC</p>"; |
12 |
|
13 |
?>
|