Securing your web application with Symfony
symfonyIntroduction As a web developer, securing your web applications is one of the most important and complex tasks you’ll regularly undertake. You may need to use some security me…
Symfony is a web application framework written in the PHP programming language. It is an open-source framework that is intended to help developers build robust, scalable, and maintainable web applications.
Symfony was created by Sensio Labs in 2005, and it is now maintained by the Symfony community. It follows the Model-View-Controller (MVC) architecture and it provides a set of reusable components, such as routing, templating, and forms, that can be used to build web applications.
ymfony is also widely used in the PHP community and has a large and active community of developers. This means that there is a wealth of documentation, tutorials, and other resources available to help developers get started and to troubleshoot any issues that may arise.
Introduction As a web developer, securing your web applications is one of the most important and complex tasks you’ll regularly undertake. You may need to use some security me…
Most web applications like to persist things, and as a web developer, you’re going to be spending a good portion of your development time pulling things in and out of databas…
As a web developer, forms will either be your favourite thing or the bane of your existence (and sometimes both). But the reality of the situation is that in order to get dat…
Since the beginning of computing the single most error-prone and unreliable component of the system has been something that isn’t really part of the system at all. Talk to an…
Writing PHP and HTML together is sooo 1998 – which is why Symfony uses the Twig templating language by default. This means instead of writing ugly code like this: <Gist u…
In this article we’re going to talk about Symfony’s routing system. Because you’ve read our comprehensive dissection, you already know that Symfony uses a front controller (y…
The intention of Symfony is to make things easier for developers. One of the big pain points when developing large and complex web applications is keeping track of the physic…
In this article we’re going to get our hands dirty poking around inside the Symfony 2 front controller. Scalpels ready? What’s that? A question? What's a front controller? If…