Sorry to say but its nearly impossible to write a bug-free application. Especially when you are working on a large scale application. You cannot test the application in all the ways a user is going to interact with. But what […]
The International PHP Conference is the world’s first PHP conference and stands since more than a decade for top-notch pragmatic expertise in PHP and web technologies. Internationally renowned experts from the PHP industry meet up with PHP users and developers […]
Symfony is a popular PHP framework, especially when working on a high-level web application. Installing and setting up a Symfony project is a little bit tricky. But when it is done step by step in the proper way, it is […]
Spamming is one of the most common problem on the web. Every site owner wants to get rid of spamming whether it is spam traffic or spam messages or spam comments on your site. To get rid of spamming you […]
Recently I started a CodeIgniter project and thought to use Twig in this project as a Templating Engine. Because PHP is developed for business logic implementation. There are a lot of dedicated libraries available for templating only. and twig is […]
Anonymous functions(Lambda) are PHP features which we do not use often but they can be really useful in certain situations like passing a function as an argument in another function, accessing a variable which is declared outside the scope of […]
When you are working on a high traffic web application the main component that got loaded is backend database. Especially in case, your database is not designed in such a way that it can handle high load and the database […]
The reason to write this tutorial is to demonstrate how to create captcha image in your application using PHP. By now, we have all encountered captcha images in online forms. Captchas are a necessary evil, and this article will teach […]
PHP is most popular and widely used language for web development and it has some awesome testing tools , documentation tools and code editors but When we talk about debugging into PHP code var_dump(), print_r(), exit(), debug_backtrace() are our best […]
Web programming is not an easy task as there are thousands of scripts are running on the server at the same time. If any fault occurs in any script and you don’t have any idea about the bug/fault It’s going […]