We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tried to import Excel XML and received an error:
Severity: Notice Message: Undefined index: Type Filename: Parser/XMLParser.php Line Number: 65
In line 65 of Parser/XMLParser.php the following code :
$cell_datatype = $data_attrs['Type'];
Error disappeared when corrected code like this:
$cell_datatype = $data_attrs[0]['@attributes']['Type'];
PS: I used SimpleExcel 0.4.0-beta
The text was updated successfully, but these errors were encountered:
What version of Excel and what version of XML did you export as?
Sorry, something went wrong.
No branches or pull requests
Tried to import Excel XML and received an error:
In line 65 of Parser/XMLParser.php the following code :
Error disappeared when corrected code like this:
PS: I used SimpleExcel 0.4.0-beta
The text was updated successfully, but these errors were encountered: