<?php /** * @author Tony Frezza * @copyright 2017 */ include('html.php'); $html = new Html; $html->add( array( 'tag' => 'h1', 'text' => 'Hello World!' ) ); echo $html->getHtml(); ?>
info at phpclasses dot org