Hi, I have an issue with the read, modify and save. I got Fatal error: Maximum execution time of 30 seconds exceeded in different functions.
Here is my code
$objPHPexcel = new PHPExcel_IOFactory::load('../Documentos/Formato_Pedido_Marco_Sosa.xls');
$objWorksheet = $objPHPexcel->getActiveSheet();
$objWorksheet->getCell('B22')->setValue('5135171');
$objWorksheet->getCell('F22')->setValue('4');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPexcel, 'Excel5');
$objWriter->save('../Documentos/Formato_Pedido_Marco_Sosa.xls');
Thanks!!!
Here is my code
$objPHPexcel = new PHPExcel_IOFactory::load('../Documentos/Formato_Pedido_Marco_Sosa.xls');
$objWorksheet = $objPHPexcel->getActiveSheet();
$objWorksheet->getCell('B22')->setValue('5135171');
$objWorksheet->getCell('F22')->setValue('4');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPexcel, 'Excel5');
$objWriter->save('../Documentos/Formato_Pedido_Marco_Sosa.xls');
Thanks!!!