i have file like this
I want to load only two visible row in this example. I do not know how I can do it.
$reader = new PHPExcel_Reader_Excel2007();
$excel = $reader->load($_FILES['plik']['tmp_name']);
$data = $excel->getActiveSheet()->toArray(null, true,true,true);
When loading the file in PHPExcel shows all 8769 rows.
I have to do it in such a way as filtered data will always be different.
Do you know any way to do this?
Thanks a lot!
Working great as soon swapped "getIndex ()" to "getRowIndex ()"