<?php
ini_set('error_reporting', E_ALL);
ini_set('display_errors', true);
require_once __DIR__.'/../src/SimpleXLSX.php';
echo '<h1>XLSX to HTML</h1>';
if (isset($_FILES['file'])) {
if ( $xlsx = SimpleXLSX::parse( $_FILES['file']['tmp_name'] ) ) {
echo '<h2>Parsing Result</h2>';
echo '<table border="1" cellpadding="3" style="border-collapse: collapse">';
$dim = $xlsx->dimension();
$cols = $dim[0];
foreach ( $xlsx->rows() as $k => $r ) {
// if ($k == 0) continue; // skip first row
echo '<tr>';
for ( $i = 0; $i < $cols; $i ++ ) {
echo '<td>' . ( isset( $r[ $i ] ) ? $r[ $i ] : ' ' ) . '</td>';
}
echo '</tr>';
}
echo '</table>';
} else {
echo SimpleXLSX::parseError();
}
}
echo '<h2>Upload form</h2>
<form method="post" enctype="multipart/form-data">
*.XLSX <input type="file" name="file" /> <input type="submit" value="Parse" />
</form>';
|