I want to read HTML table data from HTML page (without using of data base) and Export into Excel file . I am using this Javascript cede but it is not working. Please Suggest me,
From PHP :
$objReader = PHPExcel_IOFactory::createReader('HTML'); $objPHPExcel = $objReader->load("myHtmlFile.html"); $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); $objWriter->save("myExcelFile.xlsx");