csvxml/index3.php

21 lines
430 B
PHP
Raw Normal View History

2019-08-25 21:45:52 +02:00
<?PHP
declare(strict_types = 1);
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>';
echo '
</body>
</html>
';