![]() |
ficcionista 12/28/2010 |
This message can be changed in the List page: Before display event on the Eventstab. Here is how you can display user full name instead of username (make sure to replace field and table names with real ones): $rs=CustomQuery("select FIRST_NAME, LAST_NAME from LoginTableName where UserName='".$_SESSION["UserID"]."'");
function AfterSuccessfulLogin($username,$password,$data)
function BeforeShowList($xt,$templatefile)
function AfterSuccessfulLogin($username,$password,$data) |
R
|
robfontan 12/29/2010 |
This message can be changed in the List page: Before display event on the Eventstab. Here is how you can display user full name instead of username (make sure to replace field and table names with real ones): $rs=CustomQuery("select FIRST_NAME, LAST_NAME from LoginTableName where UserName='".$_SESSION["UserID"]."'");
|
T
|
Tayyab Ilyas 11/2/2013 |
How Can we display image of user with logged in as? |
![]() |
Sergey Kornilov admin 11/4/2013 |
Tayyab, $xt->assign("username",$data["FIRST_NAME"]." ".$data["LAST_NAME"]);
$xt->assign("username","<img src='full URL of image file'> ".$data["FIRST_NAME"]." ".$data["LAST_NAME"]); |
T
|
Tayyab Ilyas 11/4/2013 |
Great It worked !!! |