add all files

This commit is contained in:
Rucus
2026-02-17 09:29:34 -06:00
parent b8c8d67c67
commit 782d203799
21925 changed files with 2433086 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
require "vendor/autoload.php";
use PhpOffice\PhpSpreadsheet\IOFactory;
use PhpOffice\PhpSpreadsheet\Spreadsheet;
$reader=IOFactory::createReader("Xlsx");
$spreadsheet=$reader->load("\\\\192.168.0.2\\xampp\\htdocs\\lasuca\\controls\\milllab\\2025 MILLLABREPORT\\2025 CROP YEAR\\CROP DAY 1\\cropday1milllab.xlsx");
$writer=IOFactory::createWriter($spreadsheet, "Html");
echo $writer->save("php://output");
?>