Tell me more ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

I’m currently completing my final year project for a degree. I’m creating a website for my project however unsure of what methodology to use.

Can anyone suggest any appropriate methodologies which could be used?

share|improve this question
3  
You don't really pick methodologies per project or per domain, and web development, from a methodology perspective, isn't really that different from any other kind of software development. Furthermore, in a typical professional environment, you kinda mix and match (yes, I'm doing a bit of Waterfall and I'm not ashamed to admit it) – Yannis Rizos Nov 24 '12 at 14:50

closed as not a real question by Jim G., ElYusubov, gnat, Walter, GlenH7 Nov 26 '12 at 1:28

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

If you mean methodology as in pattern then the MVC pattern/methodology will not fail you. You need to separate the views/display which is html into templates. The controller will contain methods that are invoked when any url is clicked and the model will contain functionality for updating and querying whatever backend you are using to store your data. If you are referring to technology then you could pick one programming language with a web framework and go with it.Personally I would pick python and use the flask or bottle framework with a host of other plugins.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.