Symfony2 and Ordering of Relations and Collection Form Fields

http://shout.setfive.com/2013/03/05/symfony2-and-ordering-of-relations-and-collection-form-fields/

Logging Doctrine SQL queries in Symfony2

http://vvv.tobiassjosten.net/symfony/logging-doctrine-queries-in-symfony2/

Update associated entities in Doctrine

My entities are Series, which has many Seasons, which have many Episodes. When an episode is created or updated I want to also update its related Series so that it always has correct firstYear and lastYear data for when the series was broadcasted.

Test a website’s performance

http://www.webpagetest.org/

Doctrine 2.2 pagination

http://docs.doctrine-project.org/en/latest/tutorials/pagination.html

Adding non-entity fields to your Symfony2 forms

use Symfony\Component\Validator\Constraints\True; // in your buildForm() method: $builder ->add("firstName", "text") ->add("lastName", "text") ->add("emailAddress", "email") ->add("t_and_c", "checkbox", array( "mapped" => false, "constraints" => new True(array( "message" => "Please accept the Terms and conditions in order to register") ), ) );

24 Cool PHP Libraries You Should Know About

http://tutorialzine.com/2013/02/24-cool-php-libraries-you-should-know-about/

Create more advanced custom form type in Symfony 2.0

http://l3l0.eu/lang/en/2012/07/custom-advanced-symfony-2-form-type/

DBeaver – universal database manager

DBeaver is free and open source (GPL) universal database tool for developers and database administrators.

Trait in PHP 5.4

http://www.xpertdeveloper.com/2011/11/trait-in-php/