14 lines
193 B
PHP
14 lines
193 B
PHP
|
<body>
|
||
|
|
||
|
|
||
|
<?php
|
||
|
if ((isset($this->error)) and ($this->error != "")){
|
||
|
echo "<div id=error>";
|
||
|
echo $this->error;
|
||
|
echo "</div>";
|
||
|
}
|
||
|
echo "<div id=content>";
|
||
|
echo $this->output;
|
||
|
echo "</div>";
|
||
|
?>
|