krash11554 Posted September 4, 2012 Share Posted September 4, 2012 After you finish designing website what systems to you apply first. Just want to know other peoples opnions. I would probably put the Login and Register system first. Quote Link to comment https://forums.phpfreaks.com/topic/267996-php-systems/ Share on other sites More sharing options...
Psycho Posted September 4, 2012 Share Posted September 4, 2012 There is no one right answer to this - it all depends on context. In a business environment, you would want to start with the actual functionality of the site. When a developer/team needs to show value to the organization for what they are doing demo'ing a login would not go too far. Heck, even if it is a personal project you may want to see if what you are trying to accomplish is even worthwhile before spending time developing login/registration functionality. Many times I'll have a config script that is included with every page load and put something like $userID = 1; and use that in my script whenever needing to reference the user id. I can easily go back and implement a login process that checks for valid login and sets that variable accordingly. Quote Link to comment https://forums.phpfreaks.com/topic/267996-php-systems/#findComment-1375182 Share on other sites More sharing options...
krash11554 Posted September 4, 2012 Author Share Posted September 4, 2012 I already have most of the systems made from previous projects i just have to apply to the new project. Quote Link to comment https://forums.phpfreaks.com/topic/267996-php-systems/#findComment-1375183 Share on other sites More sharing options...
Christian F. Posted September 4, 2012 Share Posted September 4, 2012 I always start with the core functionality of the project, and make sure that it works before adding any further modules to it. Of course, this is after I've done all of the planning, so I know how the entire system will work before I write any code. Having a framework to work from also helps, in that I don't have to recreate the most common modules every time either. In other words: Just what Psycho said, what module you start writing the code for changes from project to project requirements and, to a lesser degree, developer preference. There is no one true answer to this, besides that planning must be done prior to coding. Quote Link to comment https://forums.phpfreaks.com/topic/267996-php-systems/#findComment-1375184 Share on other sites More sharing options...
ignace Posted September 4, 2012 Share Posted September 4, 2012 There is no one true answer to this, besides that planning must be done prior to coding. +1 Quote Link to comment https://forums.phpfreaks.com/topic/267996-php-systems/#findComment-1375204 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.