Forum Moderators: coopster
<a href="link1">Link1</a> <a href="contact">Contact</a> <a href="link2">Link2</a>
you can put a simple if condition to only output the 2nd link (contact) when you're online:
<a href="link1">Link1</a> <? if($online) {?><a href="contact">Contact</a> <? }?><a href="link2">Link2</a>
that's all you need to do. you don't even have to worry about additional chars or linebreaks. that should not be a problem at all.