hyteck-blog/static/views/start.php

11 lines
204 B
PHP
Raw Normal View History

2019-11-12 11:17:21 +00:00
<?php
$start = $this->oLang->texts['WELCOME'];
if ($_SESSION['admin']==0){
$start .= $this->oLang->texts['USER_INSTRUCTION'];
}
else{
$start .= $this->oLang->texts['ADMIN_INSTRUCTION'];
}
echo $start;
?>