[eluser]Kemik[/eluser]
Hello all,
I know we all have our own way of coding but I'm interested in seeing how different people build their apps.
I start with the database for the controller I'm going to be working on. E.g. if it's a news module I'll create the news_articles, news_comments, news_categories tables.
Then I move on to the controller. Do a few steps of what will be in the function and then code the function itself.
Next, I go on to the view for that controller function and finally, move on to the model.
I've been thinking about it and it may be best to start with the database, then move on the model. The database will be fresh in my mind and I won't accidentally create multiple model functions which do the same job. Then controller and finally view.