Link to home
Start Free TrialLog in
Avatar of andieje
andieje

asked on

Fat freee framework - advice

Hi

I have managed to achieve a real conversation with a real php programmer but it is quote heavy the things

He recommends fat free php frameork which I have looked at before and I do like. Its an mvc (though i dont like bow many frameworks have butchered mvc to get it on the web)

I hopw this is acceptable to question to see if anyone knows any pros and cons of this framework

Thank you
Avatar of Gary
Gary
Flag of Ireland image

Codeigniter is probably the best but any framework will add extra bloat to any application

https://ellislab.com/codeigniter

http://tutorialcodeigniter.com/beginners/codeigniter-mvc.html
I never heard of it.  
Not listed here: http://www.sitepoint.com/best-php-frameworks-2014/
Listed #9 here: http://mashable.com/2014/04/04/php-frameworks-build-applications/

If you like it, try it out and build a small application.  The best framework is the one you already know.  Since all of the popular PHP frameworks are open-source you are joining a community when you choose a framework.  If you join a large community you'll get access to more expertise than if you join a small community.  You might want to look for a user's group near you, just to get a reality check on your plans.
ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
It all depends on what your site needs. Just a few days ago I posted a level 101 article about "The simplest CMS".

It mainly addresses how to build a small website with just static content and avoid to have to repeat the navigation (or any other part) for every html page by having a simple script putting together the single parts of each page by SSI or php include.

It's surely also very "fat free", as it's very little code.

The topic framework is double-edged sword. On the one side it helps getting faster results, on the other side you have a learning curve of how to use it. If you're a PHP beginner the learning curve of using a framework can partly take away the need to learn PHP, if the framework functionality totally fits your needs and is the solution for your type of application. But you can only really judge a framework, if you know basic PHP and can read how details of it work and are written.

Then it of course depends if you start from scratch or have an existing site you want to migrate to using a framework. To avoid learning much the best solution can be to neither do a site with native PHP nor by adding a framework, but by using a CMS best fitting the site concept and customizing it. Many CMS systems have a core API, which is extensible for developers. That can really help you to concentrate on the core thing of your site or application, that differentiates it from any current site.

Bye, Olaf.