The problem seems to be that this class uses the Excel 97 format, which has a limit of 255 chars for the contents of a cell. I solved it by using the PEAR Excel Writer class (http://pear.php.net/manual/en/package.fileformats.spreadsheet-excel-writer.php), which allows to write Excel files in the newer 2000+ format. This class is good for simple Excel documents, but the PEAR class is much more robust and allows more complex document generation.
Hope this helped. |