/phpHtmlDocument

HtmlDocument is simple php class for html creation without using any meta tag

Primary LanguagePHPApache License 2.0Apache-2.0

phpHtmlDocument

HtmlDocument is simple php class for html creation without using any meta tag

Examples:


setHeaders($doc->createElement("meta", array("name"=>"viewport", "content"=>"initial-scale=1.0"), null, true));
$doc->createElement("div", array("id"=>1), " hello world");
//print all the html
echo $doc->initHtml();
?>