14 lines
184 B
PHTML
14 lines
184 B
PHTML
|
|
<?php
|
||
|
|
|
||
|
|
use MintyPHP\Buffer;
|
||
|
|
|
||
|
|
Buffer::start('html');
|
||
|
|
|
||
|
|
?>
|
||
|
|
<p style="color:red;">ERROR: <?php Buffer::get('html'); ?></p>
|
||
|
|
<?php
|
||
|
|
|
||
|
|
Buffer::end('html');
|
||
|
|
|
||
|
|
require __DIR__ . '/default.phtml';
|