Como indicar o caminho para o nome do usuário logado?
Autor: Lucio Flavio
Visitado 2031,
Followers 1,
Compartido 0
Como inserir o caminho para coletar o nome do usuário logado??
exemplo:
<?php echo $_SESSION['realname'] ?>
Publicado en
Autor
Hello Lucio,
I'm not sure that I understand you correctly, but if you seek the correct syntax for the code you quoted then it would be as follows:
<?php echo $_SESSION['realname']; ?>
However, that won't work on its own. If you want to capture the logged in user within WebSite X5 then you need some extra steps:
Be sure to start the session on the page in question (code in header):
i.e. <?php session_start(); ?>
Followed by this code:
<?php
$pa = new imPrivateArea();
$user = $pa->who_is_logged();
?>
You can then return the name of the logged in user by way of the following code:
<?php echo $user['realname']; ?>
Hope this is what you are looking for...
Kind regards,
Paul