View Single Post
  #5 (permalink)  
Old Apr 25th, 2008, 09:12
djeyewater djeyewater is offline
Junior Member
Join Date: Oct 2007
Location: UK
Posts: 38
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Website with login feature

Well, it depends on how your pages are setup, if pages are exactly the same whether people logged in or not, you don't need to make any changes to them.

If you have say a menu that only appears when you're logged in, and appears on every page when you're logged in, you don't need to create new versions of every page, just edit the existing pages and add something like
PHP: Select all

if(//logged in)
{include('loggedInMenu.php');} 
Reply With Quote