Hi What is the correct formatting of the following code to show the correct link depending on whether the user is signed in or not (my account if signed in, login if not signed in) Thanks in advance <?php if (tep_session_is_registered('customer_id')) {Â Â $acc_link = tep_href_link('account.php'); Â $acc_title= HEADER_TITLE_MY_ACCOUNT; } else{Â Â $acc_link = tep_href_link('login.php'); Â $acc_title= HEADER_TITLE_LOGREGISTER; }Â ?> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â <table border="0" cellspacing="0" cellpadding="0" align="right"> Â Â Â Â Â Â Â Â Â Â Â Â <tr><td style="padding:13px 0px 0px 0px;"> <?php echo tep_href_link('<?php echo $acc_link;?>')?>"><?php echo $acc_title;?></a>