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? Link to comment https://forums.phpfreaks.com/topic/67101-include-vs-include/ 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 Link to comment https://forums.phpfreaks.com/topic/67101-include-vs-include/#findComment-336531 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.