php-export-data icon indicating copy to clipboard operation
php-export-data copied to clipboard

PHP class to export data in CSV, TSV, or Excel XML (aka SpreadsheeML) format to a file or directly to the browser

Results 13 php-export-data issues
Sort by recently updated
recently updated
newest added

New lines in the cell value is not working when you open it via excel. It said all new lines characters should be replaced with 
 like this: Thank you...

hi i'm create an excel with this class, but when i open file in excel this warning showing in open dialog: "The file format and extension of 'report.xls' don't match....

Hi and congratulation for this great php module. I have a question for you! Is there a way to use colspan such as html td to merge cells?

Composer is so popular in php community these day. Thus, Does it possible to define `composer.json` and publish to packagist.org for sake of package accessibility?

Hi Eli, Im trying to import UTF chars like 'ñ' and accented vocals, out of my DB and I can do it perfectly when using XML but file size is...

At 129 the separator is wrong so i added a parameter with default values

add funciton global mb_str_replace(){ ... } and methd public function addRowToArray($allRows = array()){ ... }

Hello, It's possible to resize colonnne at the size of data?

Example of use: $excel = new ExportDataExcel('browser'); $excel->filename = "test.xls"; $excel->title = "Foglio 1"; $data = array( array(1,2,3,"=SUM(R[0]C[-3]:R[0]C[-1])"), array("asdf","jkl","semi"), array("1273623874628374634876","=asdf","10-10"), array("2010-01-02 10:00AM","1/1/11","10-10"), array("1234","12.34","-123."), array("-12345678901234567890","0.0000000000123456789","-"), ); $excel->initialize(); foreach($data as $row) {...

fix date regex and remove formating date at generateCell method