WebSite X5Help Center

 
Lucio Flavio
Lucio Flavio
User

Collect the name of the logged in user ?  en

Auteur : Lucio Flavio
Visité 2125, Followers 4, Partagé 0  

Inserting the way to collect the name of the logged in user ?

example:
<? php echo $ _SESSION ['realname']?>

Posté le
1 RéPONSES - 1 UTILES - 1 CORRECT
Paul M.
Paul M.
Moderator

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

Lire plus
Posté le de Paul M.