
Originally Posted by
davidpm168
Vgarcia: Do you recommend any php or rails standard. Do you have any samples handy you would be willing to share.
I'm not going to tell you that this
Code:
function whatever(arguments)
{
}
is any better than this
Code:
function whatever(arguments) {
}
That borders on micromanagement in my opinion 
What I was talking about was setting a baseline with your programmers, with regard to what libraries are to be used for database calls, templates, etc. For example, with PHP you could say something like "use smarty for templates and use PEAR DB:
ataObject for all database interaction". This way, all of your programmers learn and work with the same APIs, shortening the learning curve.
The nice thing about Rails is that all the database libraries, templates, etc. have been chosen for you. If you and your programmers can live with that (or any other framework that's as complete), it can simplify your life
Bookmarks