namespace Html;
class Table {
public $title = "";
public $numRows = 0;
public function message() {
echo "<p>Таблица '{$this->title}' имеет {$this->numRows} строк.</p>";
}
}
$table = new Table();
$table->title = "My table";
$table->numRows = 5;
<html>
<body>
$table->message();
</body>
</html>