How to display user pic next to "Logged on as" message |
11/13/2013 11:55:36 | |
| PHPRunner Tips and Tricks | ||
|
Lets consider the situation when your login tables stores path to user picture. Sample database structure: ID Username Password Pic
$_SESSION["pic"]=$data["Pic"];
$xt->assign("username","<img height=24x width=24px src='".$_SESSION["pic"]."'> ".$_SESSION["UserName"]);
|
||