(ExcelExplorer 4.0)
Convert data to well-formatted HTML string.
mixed HTML( )
Parameters
- None
Description
Returns well-formatted HTML string using the following rules:
- ASCII characters will be untouched.
- Unicode characters will be converted to the HTML sequences like Ӓ in order to correctly displayed in the browser regardless of the codepage selected.
- All characters like '<', '>' are also will be converted to be correctly displayed in the HTML document.
Print string in the HTML format
<?php
echo $ee->Cell($sheet,$col,$row)->Data()->HTML();
?>
|