I would like to convert our college's hard coded website.
Should i follow any pattern to achieve efficient & fast Conversion ?
kindly guide me.
I would like to convert our college's hard coded website.
Should i follow any pattern to achieve efficient & fast Conversion ?
kindly guide me.
MVC is one thing, but why not try to pry it into two sections first?
For instance, think of it as two parts communicating with each other, there's the client and server.
The "client" part is what contains the elements for display and passes actions by the user to the "server".
Now the "server" should contain everything else, for now. Your "client" part is what will eventually become V(iew).
Once this works, you can concentrate on prying the "server" into M and C, your "client" part will probably have some C parts in it, too.
Anyways, that's the general rule I follow, when converting and not redesigning.
This depends how much specific PHP code you have to handle... You would use a PHP framework only in the case you have to build functionalities which a regular CMS does not provide.