Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

looking for PHP Framework with special abilities [closed]

I am looking for a php web framework that supports multiple databases with the same schema/model. Every customer of us will become his own webserver with his own database. On top of this we want to develop a central administration app that works on all customer databases, which are all have the same schema/model. Is there a php framework that supports such things?


2 Answers

I'd recommend using Doctrine as an ORM. This makes it effortless to communicate with various databases without modifying code.

http://www.doctrine-project.org/

Your Models in the MVC will most likely use Doctrine. The rest of your application (the VC in MVC) can be built in Zend, Symfony, or whatever you'd like.

like image 85
Eric Avatar answered Apr 30 '26 06:04

Eric


There's a couple good frameworks. Off the top of my head, CodeIgniter, CakePHP, Symfony, Zend...but in any case I'm willing to bet you're going to need to roll your own code to do exactly what you want to do.

like image 45
Xorlev Avatar answered Apr 30 '26 06:04

Xorlev