How i can create a excel file .xlsx
into a folder like '/temp'
, like the creation of text file, than i want to use this file after open to write data into it using PHP, it's that possible??? using phpexcel
library? The second question is how proceed to write data into cell in a excel file automatic format? how proceed to save data into this file destination??? how to use ::load()
instead of new creation?
Can be existed some instruction to writer in phpexcel instead pf reader like this:
$objReader = new PHPExcel_Reader_Excel2007();
$objPHPExcel = $objReader->load("05featuredemo.xlsx");
-->
$objReader = new PHPExcel_Writer_Excel2007();
$objPHPExcel = $objReader->load("05featuredemo.xlsx");
To write directly into existing excel file (safe memory and time)...