show/hide this revision's text 2

<.ul.> <.li.>Home <.li.>Products

  • <.a href="">Secret

    In your menu file or w/e you put:

    <? require 'auth.php' ?>
    <ul>
        <li><a href="">Home</a></li>
        <li><a href="">Products</a></li>
        <? if( loggedin() ): ?><li><a href="">Secret area</a></li><? endif; ?>
    </ul>
    

    Then in pages that require auth just do this:

    <?php 
        require 'auth.php';
        require_login();
    ?>
    

    Where auth.php may contain:

    <?php
    
        function loggedin(){
        	return isset( $_SESSION['loggedin'] );
        }
    
        function require_login(){
        	if( !loggedin() ){
        		header( 'Location: /login.php?referrer='.$_SERVER['REQUEST_URI'] );
        		exit;
        	}
        }
    
    ?>
    
  • show/hide this revision's text 1

    <.ul.> <.li.>Home <.li.>Products

  • <.a href="">Secret area

    Then in pages that require auth just do this:

    <?php 
        require 'auth.php';
        require_login();
    ?>
    

    Where auth.php may contain:

    <?php
    
        function loggedin(){
        	return isset( $_SESSION['loggedin'] );
        }
    
        function require_login(){
        	if( !loggedin() ){
        		header( 'Location: /login.php?referrer='.$_SERVER['REQUEST_URI'] );
        		exit;
        	}
        }
    
    ?>