06-22-2018, 09:06 AM
Thanks, Mudmin
I added the lines in the account.php - which essentially has the user information since after login.
this one
<?php
if(isset($user) && $user->isLoggedIn()){
dump($user);
}
?>
didn't render the site correctly.
this snippet: $user->data()->fname - seems to be working fine (no render errors)
and this one:
if(!empty($_POST){
$username = $user->data()->username;
}
I don't know how to work :/ sorry
I added the lines in the account.php - which essentially has the user information since after login.
this one
<?php
if(isset($user) && $user->isLoggedIn()){
dump($user);
}
?>
didn't render the site correctly.
this snippet: $user->data()->fname - seems to be working fine (no render errors)
and this one:
if(!empty($_POST){
$username = $user->data()->username;
}
I don't know how to work :/ sorry