Rodney H. wrote:Yeah, that is my favorite of the three, too. It is light-weight, easy to use, and elegant.
I also like the fact that the "view" files are with a .php extension for syntax highlighting (as opposed to a weird template extension).
Thanks.
Hello Rodney.
I have tried CodeIgniter 1.5.4 a bit.
I have also posted some in CodeIgniter forums. (http://www.codeigniter.com/forums/ )
It is probably the best Framework/MVC around.
Especially the documentation is super. With easy examples how to use each Class Library.
Must have taken months and months to write such a tutorial/documentation!!!
What I have against it is:
- The use of URL manipulation .... instead of using: path/index.php?controller=id&action=value
it uses: path/controller/action/value
There is a configuration setting, to use normal style URL,
but CodeIgniter does not work properly using this setting. ( I am probably the only one tested this option ... 😃 )
Why not change the URL?
I like to know where I browse, which web folder I connect to.
I think this is a fair and honest thing to visitors.
This is also one reason why I do not like using frames.
I have looked around for to find a nice clean implementation of MVC ( Model-View-Controller )concept.
Without any framework overhead add-ons.
But haven't found one yet.
I have done some experiments with setup structures, that can be a clean way to MVC.
The idea of MVC is used by many of us, by instinct/choice, without actually thinking of it.
We separate request handling, templates and functions/classes/db.
.... there is definitely nothing new or revolutionary about it
Regards 🙂