D
|
djsmithuk 2/25/2009 |
change {$Username} to {$row.1Full Name} |
J
|
jpbconsulting author 2/26/2009 |
I thought the $row variable was assigned to the SQL query for the view on the page. The FullName field would be in a table other than what is being used for results on the page. How do you distinguish the two? |
J
|
jpbconsulting author 2/26/2009 |
I think I found my answer, but I am unsure how to address the individual field names. |
![]() |
Admin 2/26/2009 |
$data['Full Name'] is what you looking for. $_SESSION['FullName'] = $data['Full Name'];
$xt->assign("username",$_SESSION['FullName']); |