csvxml/index3.php

22 lines
795 B
PHP
Raw Normal View History

2019-08-25 21:45:52 +02:00
<?PHP
echo '<link rel="stylesheet" type="text/css" href="css/main.css">';
echo '<div class="title">';
echo 'museum-digital CSV to XML converter';
echo '</div>';
echo '<div class="maincontent">';
2019-08-27 00:31:46 +02:00
$semikoma = $_GET['semikoma'];
2019-08-25 21:45:52 +02:00
echo '<table border="0" cellpadding="0" cellspacing="0" summary="" width="100%" style="border-bottom:1px solid #000000;padding-bottom:3px;margin-bottom:5px;">';
echo '<tr>';
echo '<td width="80%">';
2019-08-27 00:31:46 +02:00
echo 'Please wait ... (checking validity)';
echo '</td>';
2019-08-25 21:45:52 +02:00
echo '<td style="text-align:right;padding-top:0px;padding-bottom:0px;">';
echo '<form action="index.php" style="margin:0px;padding:0px;">';
echo '<input type="submit" value="Reload" />';
echo '</form>';
echo '</td>';
echo '</tr>';
echo '</table>';
2019-08-27 00:31:46 +02:00
require 'csv_check.php';
2019-08-25 21:45:52 +02:00
echo '</div>';