I'm new to PHP and use of PHP frameworks. I chose Kohana PHP as my framework for a project I am working on (instead of alloy, also because it's the least complicated). Is there a way to implement MVC triad hierarchy in my Kohana project?
folder (root folder for mvc)
-|-subfolder
----models
----views
----controllers
-|-subfolder 2
----models
----views
----controllers
If anyone could help me in routing and forms for this kind of implementation, I would gladly appreciate it :)
note: I did browse through kohana's 3.3 docu, and I just don't get how to actually implement this