csvxml/index4.php

19 lines
572 B
PHP
Raw Normal View History

2019-08-25 21:45:52 +02:00
<?PHP
//error_reporting(E_ALL);
//ini_set('display_errors',1);
2019-08-27 00:31:46 +02:00
$semikoma = $_GET['semikoma'];
2019-08-25 21:45:52 +02:00
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">';
echo '<table border="0" cellpadding="0" cellspacing="0" summary="" width="100%">';
echo '<tr>';
echo '<td width="50%">';
2019-08-27 00:31:46 +02:00
echo 'Please wait ... (transforming)<hr>';
require 'csv_laden_utf.php';
echo '</td>';
2019-08-25 21:45:52 +02:00
echo '</tr>';
echo '</table>';
echo '</div>';