I need some help to put the username at the top of the page. In php I was able to do it, (if you give an echo "$ username" it works) but it loses all formatting, so I need to do a replace in html. See
if (Session::getValue('logado')):
switch (Session::getValue('departamento')) {
case '1':
$menu = 'menu/admin.html';
$nomeusuario = $_SESSION['nome'];
$string = 'Olá ' . $nomeusuario . ' seja bem vindo!';
$nova = str_replace('#TMSG#', $nomeusuario, $string);
var_dump($nova);