
Zack Schreiber - 2013-11-07 18:09:52
$xlsx = new SimpleXLSX($tmpfilename);
if ($xlsx->success()) {
print_r( $xlsx->rows() ); //Sheet 1
}
else {
echo 'xlsx error: '.$xlsx->error();
}
I am using v0.6.8 and this code and getting "xlsx error: Entry not found: _rels/.rels"
It is an xls file that I am getting from another source. I do "Save As" xlsx then try to parse. Can you help?