Files
controls-web/controls-rework/OLD/bigsheet.php
2026-02-17 09:29:34 -06:00

37 lines
835 B
PHP

<?php // phpcs:ignoreFile
declare(strict_types=1);
require_once __DIR__ . '/excel_reader2.php';
$data = new Spreadsheet_Excel_Reader(
'I:/htdocs/lasuca/controls/milllab/2023 MILLLABREPORT/CROP DAY 40/cropday40milllab.xlsx'
);
ob_start();
$tableHtml = $data->dump(false, false, 0, 'excel');
$rendered = ob_get_clean();
?>
<div class="table-scroll">
<style>
.excel {
border-collapse: collapse;
width: 100%;
font-family: var(--font-family, 'Inter', sans-serif);
font-size: 0.9rem;
}
.excel th,
.excel td {
border: 1px solid var(--border-subtle, #cbd5f5);
padding: 0.35rem 0.5rem;
text-align: center;
}
.excel thead th {
background-color: rgba(15, 23, 42, 0.06);
color: var(--text-strong, #111827);
}
</style>
<?php echo $rendered; ?>
</div>