Commit 3a67d3dd by sn

html meta data im D LOGGER

1 parent 16ea28ee
Showing with 14 additions and 1 deletions
...@@ -91,7 +91,20 @@ class D { ...@@ -91,7 +91,20 @@ class D {
public static function printToHtmlFile($param_filename, $param_kindof = 'w') { public static function printToHtmlFile($param_filename, $param_kindof = 'w') {
$screen_content = D::printToScreen(true); $screen_content = D::printToScreen(true);
mcFile::write($param_filename, $screen_content, $param_kindof);
$html_beginn = '
<html>
<header>
<title>D LOGGER</title>
</header>
<body>
';
$html_end = '
</body>
</html>
';
mcFile::write($param_filename, $html_beginn.$screen_content.$html_end, $param_kindof);
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!