16 lines
305 B
PHP
16 lines
305 B
PHP
<?php
|
|
require_once 'excel_reader2.php';
|
|
include 'simplexlsx.class.php';
|
|
|
|
$xlsx = new SimpleXLSX('LabAnalysesCropDay1.xlsx');
|
|
echo '<h1>$xlsx->rows()</h1>';
|
|
echo '<pre>';
|
|
print_r( $xlsx->rows() );
|
|
echo '</pre>';
|
|
|
|
echo '<h1>$xlsx->rowsEx()</h1>';
|
|
echo '<pre>';
|
|
print_r( $xlsx->rowsEx() );
|
|
echo '</pre>';
|
|
|
|
?>
|