Web Project planning tutorial

user382913 picture user382913 · Jul 20, 2010 · Viewed 7.1k times · Source

I am about to start a web project in PHP/MySql and would like to do proper planning but i have no experience in doing this, so i am looking for an online tutorial i can read that will help me learn how to plan web projects.

Please post resourcesful links.

Thanks.

Answer

BenV picture BenV · Nov 3, 2010
  1. Read What should a developer know before building a public web site?
  2. Define and document scope
  3. Define and document functional requirements
  4. Look for existing solutions - if you can leverage a CMS or eCommerce package you can save a lot of development time
  5. Design database (ER Diagram)
  6. Design website structure (sections, links, navigation)
  7. Design page layout - wireframe tools or even paper/pencil are useful for this
  8. Design application structure - high level class structure
  9. Identify libraries and frameworks, e.g., Doctrine, Zend, CodeIgnitor, etc
  10. Technical design decisions - naming conventions, logging strategy, exception handling
  11. Testing Plan
  12. Implementation Plan

Sources