getSheet(0); // Set the sheet title. $sheet->setTitle('Numbers'); // Add the numbers to the sheet. $row = 1; foreach ($numbers as $number) { $sheet->setCellValue('A' . $row, $number); $row++; } // Save the XLS file. $xls->save('numbers.xls'); ?>