How do most of you construct your applications?
Do you break it up into sections based on the functions of the app?
example:
contact_add.php
contact_delete. php
contact_edit.ph p
.....
Do you write one long script, and then call parts of it using a variable?
example:
contact.php?act ion=add
Or do you do something else, like use a MVC design pattern? I'm interested
in rethinking the way I write stuff. Any suggestions would be helpful.
Thanks
Do you break it up into sections based on the functions of the app?
example:
contact_add.php
contact_delete. php
contact_edit.ph p
.....
Do you write one long script, and then call parts of it using a variable?
example:
contact.php?act ion=add
Or do you do something else, like use a MVC design pattern? I'm interested
in rethinking the way I write stuff. Any suggestions would be helpful.
Thanks
Comment