Quote:
Originally Posted by Jon
In my /include/check_useraccount.php
I added the query:
Code:
$name=func_query_first("select firstname,lastname from $sql_tbl[customers] where login='$login'");
In the same file:
Code:
$smarty->assign("name",$name);$smarty->assign("name",$name);
Then in my authbox.tpl
Code:
Welcome back,
{$name[0]} {$name[1]}
|
This works! Thanks a lot for the help Jon.
