You can't add links with php var to _header.html file, it will not read your var
You can add code to templates/tmpl_uni/scripts/functions.php
find function HelloMemberSection()
and you will have here if( $logged['member'] ) to members with this code
<div class="hello_actions">
<span><a href="<?= $site['url'] ?>member.php"><?= _t('_My account') ?></a></span>
<span><a href="<?= $site['url'] ?>mail.php?mode=inbox"><?= _t('_My Mail') ?></a><?=' '.$sNewLet;?></span>
<span><a href="<? echo getProfileLink( $memberID ) ?>"><?= _t('_My Profile') ?></a></span>
<span><a href="javascript:void(0);"
onclick="window.open( '<?= $site['url'] ?>presence_pop.php' , 'Presence', 'width=260,height=600,toolbar=0,directories=0,menubar=0,status=0,location=0,scrollbars=0,resizable=1');"
><?= _t('_RayPresence') ?></a></span>
<span><a href="<?= $site['url'] ?>logout.php?action=member_logout"><?= _t('_Log Out2') ?></a></span></div>
If we add My Friends, My Photos and Invite a friend (View My Profile have you here already)
New code will be (green is added)
<div class="hello_actions">
<span><a href="<?= $site['url'] ?>member.php"><?= _t('_My account') ?></a></span>
<span><a href="<?= $site['url']
?>mail.php?mode=inbox"><?= _t('_My Mail')
?></a><?=' '.$sNewLet;?></span>
<span><a href="<? echo getProfileLink( $memberID )
?>"><?= _t('_My Profile') ?></a></span>
<span><a href="javascript:void(0);"
onclick="window.open( '<?= $site['url'] ?>presence_pop.php' ,
'Presence',
'width=260,height=600,toolbar=0,directories=0,menubar=0,status=0,location=0,scrollbars=0,resizable=1');"
><?= _t('_RayPresence') ?></a></span>
<span><a href="<?= $site['url']
?>logout.php?action=member_logout"><?= _t('_Log Out2')
?></a></span>
<!-- added by okweb start -->
<div style="padding-left: 50px">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<img border="0" height="16" width="16" alt="<?= _t( '_Friends') ?>" src="<?= "{$site['url']}templates/tmpl_$tmpl/images/icons/action_friends.gif" ?>"> <a href="<?= $site['url'] ?>viewFriends.php?iUser=<? echo $memberID ?>"><?= _t('_Friends') ?></a>
<img border="0" height="16" width="16" src="<?= "{$site['url']}templates/tmpl_$tmpl/images/icons/pph.gif" ?>"> <a href="<?= $site['url'] ?>browsePhoto.php?userID=<? echo $memberID ?>"><?= _t('_My Photos') ?></a>
<img border="0" height="16" width="16" src="<?= "{$site['url']}templates/tmpl_$tmpl/images/icons/frs.gif" ?>">
<a onclick="return launchTellFriend();" href="/tellfriend.php"><?= _t('_Invite a friend') ?></a>
</td>
</tr>
</table>
</div>
<!-- added by okweb end -->
</div>
guess you will have something to work further with now...