Converting Excel Files to HTML in PHP
Contents
[
Hide
]
Aspose.Cells - Converting Excel Files to HTML
To convert Excel to HTML using Aspose.Cells for Java in PHP, simply invoke worksheet_to_html() method of Converter module.
PHP Code
$saveFormat = new SaveFormat();
$workbook = new Workbook($dataDir . "Book1.xls");
//Save the document in PDF format
$workbook->save($dataDir . "OutBook1.html", $saveFormat->HTML);
Download Running Code
Download Converting Excel Files to HTML (Aspose.Cells) from any of the below mentioned social coding sites: