Skip to content

Instantly share code, notes, and snippets.

@jaromirnyklicek
Created June 13, 2012 12:43
Show Gist options
  • Save jaromirnyklicek/2923834 to your computer and use it in GitHub Desktop.
Save jaromirnyklicek/2923834 to your computer and use it in GitHub Desktop.
PHP -> XLS export
require_once dirname(__FILE__) . '/php-excel.class.php';
$visitors = $this->visitorModel->getAll();
$data = array();
foreach($visitors as $visitor) {
$row = array();
$row[] = $visitor->name;
$row[] = $visitor->surname;
$data[] = $row;
}
$xls = new Excel_XML();
$xls->addWorksheet('Chybně vyskloňované', $data);
$xls->writeWorkbook('export.xls');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment