index.php
Html.php
 

<?php
namespace Html;
include "Html.php";
$table = new Table();
$table->title = "My table";
$table->numRows = 5;
$row = new Row();
$row->numCells = 3;
?>
<html>
<body>
<?php $table->message(); ?>
<?php $row->message(); ?>
</body>
</html>
Result:
Table 'My table' has 5 rows.

The row has 3 cells.