miklesw Posted August 28, 2007 Share Posted August 28, 2007 Hi, I'm working on an assignment with php..and i just discovered includes.. I'm trying to think ways of using include to save some time... The site has a visitor section, where users can search and view items..and a restricted section where users can publish the items.. I narrowed it down to these 2 options: 1. Generic page including all core functionality (db, sessions, login, navigator, header) and including pages depending on POST/GET 2. Individual pages including core functionality.. In option 1. I would have to have 2 of these generic pages..(requiring/not requiring authentication) Can't seem to decide on the best way to do this.. anyone has any thoughts on this? Quote Link to comment Share on other sites More sharing options...
Jessica Posted August 28, 2007 Share Posted August 28, 2007 I do #1 but use mod_rewrite and extract the page URL using $url = $_SERVER['REQUEST_URI']; instead of $_GET. It looks nicer Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.