Security is always a big deal for a software specially for web app where you don't know your users' intention. To ensure some common security measure, CakePHP provides SecurityComponent with its core. Let's come to the point. If you try to POST any request through AJAX, you will get Bad Request exception and your request…Read more AJAX requests in CakePHP without disabling SecurityComponent
php
PHP Image Manipulation
GD library (http://php.net/manual/en/book.image.php) is a good PHP library for manipulating images. I was familiar with it but never used in production before. I'm working on a personal project now which required some image manipulation for profile image (avatar). So, I used GD library and it's really easy to use. If you are using latest version…Read more PHP Image Manipulation