Related question. In want to get the full name in this line, so firstname and surname with a space inbetween. (I'm customizing PunBB, so I have these database fields.)
<? echo $lang_index['Newest user'] ?>: <a href="profile.php?id=<? echo $stats['last_user']['id'] ?>"><? echo pun_htmlspecialchars($stats['last_user']['firstname']) ?></a>
firstname and surname seperate works, but I can't figure out he right syntax to get both first and surname. For example, this doesn't work:
<? echo pun_htmlspecialchars($stats['last_user']['firstname']['surname']) ?>
What's the cleanest/quickest way?
Thanks!
BTW, thanks for the side note, Reines. I didn't know that. It's good to know when I move to another server. For now it works and I like to remove "unnecessary" things from the code whereever possible. I'm easily confused. ;-)