Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a good way to organize a PHP website application? [closed]

When doing large projects my code seems to get all over the place. How do you guys organize your code?

like image 386
Andrea Avatar asked Feb 16 '10 02:02

Andrea


1 Answers

You should be using a design pattern; consider starting with MVC.

Strictly following a design pattern will improve the readability of your code base immensely (among other benefits).

like image 163
Dolph Avatar answered Nov 11 '22 13:11

Dolph