7 lines
182 B
PHP
7 lines
182 B
PHP
<?php $this->view('template/header', ['title' => $title]); ?>
|
|
|
|
<h1>Hello world</h1>
|
|
<p>This is a message from the view</p>
|
|
<p><?=$data?></p>
|
|
|
|
<?php $this->view('template/footer'); ?>
|