write
require_once('PHPExcel.php');
$phpexcel = new PHPExcel();
$page = $phpexcel->setActiveSheetIndex(0);
$page->setCellValue("B2", "Hello world"); // this
$page->setTitle("Test");
$objWriter = PHPExcel_IOFactory::createWriter($phpexcel, 'Excel2007');
$objWriter->save("test.xlsx");
everything is working !
require_once('PHPExcel.php');
$phpexcel = new PHPExcel();
$page = $phpexcel->setActiveSheetIndex(0);
$page->setCellValue("B2", "Привет мир"); // russian version - Hello world
$page->setTitle("Test");
$objWriter = PHPExcel_IOFactory::createWriter($phpexcel, 'Excel2007');
$objWriter->save("test.xlsx");
waiting: "Привет мир" (without the quotes)
reality: "" (without the quotes)
what did I make not correctly?