2019-08-25 21:45:52 +02:00
|
|
|
<?PHP
|
2019-08-30 23:13:46 +02:00
|
|
|
declare(strict_types = 1);
|
2019-12-10 05:34:19 +01:00
|
|
|
|
2019-08-30 23:13:46 +02:00
|
|
|
require_once __DIR__ . "/functions/functions.php";
|
|
|
|
|
|
|
|
echo printHTMLHead();
|
|
|
|
|
2019-08-25 21:45:52 +02:00
|
|
|
echo '<div class="maincontent">';
|
2019-08-27 00:31:46 +02:00
|
|
|
$semikoma = $_GET['semikoma'];
|
|
|
|
echo 'Please wait ... (checking validity)';
|
2019-08-25 21:45:52 +02:00
|
|
|
echo '<form action="index.php" style="margin:0px;padding:0px;">';
|
|
|
|
echo '<input type="submit" value="Reload" />';
|
|
|
|
echo '</form>';
|
2019-08-27 00:31:46 +02:00
|
|
|
require 'csv_check.php';
|
2019-08-25 21:45:52 +02:00
|
|
|
echo '</div>';
|
2019-08-30 23:13:46 +02:00
|
|
|
echo '
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
';
|