Get your own PHP server Result Size: 625 x 533
index.php
Html.php
 
<?php
include "Html.php";
use Html as H;
$table = new H\Table();
$table->title = "My table";
$table->numRows = 5;
?>

<html>
<body>

<?php $table->message(); ?>

</body>
</html>

                  
Table 'My table' has 5 rows.