show/hide this revision's text 2 formatting

Basically where you have your menu in html, say as a list

  • Home<ul> <li>Home</li> </ul> you add php so after </li> of the last itemthen add:

    <?php
      if($session-logged_in) {    
    ?>
    
    <li>My Account</li>
    
    <?php  
      }
    ?>
    
show/hide this revision's text 1

Basically where you have your menu in html, say as a list

  • Home
you add php so after of the last item then add

 <?php
 if($session-logged_in) {

 ?>

<li>My Account</li>

<?php

}

?>