How to use and Register namespaced Twig Paths

http://symfony.com/doc/current/cookbook/templating/namespaced_paths.html

Symfony2: define your bundle’s configuration values using the TreeBuilder

http://php-and-symfony.matthiasnoback.nl/2011/11/symfony2-define-your-bundles-configuration-values-using-the-treebuilder/

Comparison of pecl/memcache and pecl/memcached

There are primarily two clients used with PHP. One is the older, more widespread pecl/memcache and the other is the newer, less used, more feature rich pecl/memcached. Both support the basics such as multiple servers, setting vaules, getting values, increment, decrement and getting stats. Here are some more advanced features and information.

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/