i get the excel values, but i dont separate the column value, how to i get the columns value.
include 'simplexlsx.class.php';
$xlsx = new SimpleXLSX('bb.xlsx');
list($num_cols, $num_rows) = $xlsx->dimension(2);
foreach ($xlsx->rows(2) as $key => $r) {
echo $key . "<br>" . $r;
}