Help me i want to save excel in pdf format The code:
include_once \'Classes/PHPExcel.php\';
/** PHPExcel_IOFactory */
require_once (\'Classes/PHPExcel/IOFac
You need DomPDF for rendering the PDF. Check if you have the DomPDF library, otherwise download and implement it as follow:
$rendererName = PHPExcel_Settings::PDF_RENDERER_DOMPDF;
$rendererLibrary = 'domPDF0.6.0beta3';
$rendererLibraryPath = dirname(__FILE__). 'libs/classes/dompdf' . $rendererLibrary;