Question

Is there a PHP framework that doesn't force me to use a single index.php as the entry point, or an MVC architecture? Because I need to develop something in my own way, with features like Authentication, Security, Crypto, Database CRUD and the like, and so a framework of some sort could help. Is this RAD?

Was it helpful?

Solution

The Zend framework will let you use whatever jacked-up system you can create. It is modular; use what you want throw away the rest. Using the MVC pattern is a good idea however. Remember you stand on the shoulders of giants.

OTHER TIPS

Also remember that front controller (index.php) and MVC are separate patterns. That is, you can have an MVC framework that does NOT implement or require the front controller. My framework of choice, QCubed, happens to be like that.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top