PHP 50 Must Know PHP Code Optimization Techniques 21st April 2020 Hello Everyone Today in this blog you are going to learn the PHP code optimization techniques. Code optimization in PHP is a program transformation technique, which tries to improve the…
PHP Send Email using PHP and AJAX 15th November 2019 Hello everyone, Today in this blog we are going to learn how we can send email using PHP. Keep in mind when sending e-mails through PHP is a relatively simple…
PHP Sorting an Array in PHP 5th September 2019 Today in this blog we will understand the concept of Sorting an Array in PHP. We will be covering the basic functions for arrays sorting in PHP. Array sorting becomes…
PHP Must Learn Generate Auto Increment Invoice Number With Prefix Using PHP and MySql. 9th July 2019 Today in this blog we will understand the concept of How we can generate auto increment invoice number with prefix using PHP and MySql. Let’s start, first of all, we…
PHP Limit the number of words in a div using HTML and PHP 1st July 2019 Today we are going to learn how to Limit the number of words in a div using HTML and PHP. In this blog, we are going to use a custom…
PHP How to decode JSON data and accessing the results in PHP 23rd June 2019 Today, In this blog we are going to learn “How to decode JSON data and accessing the results in PHP”. JSON is not an array, an object, or a data…
PHP Limit number of login attempt using PHP & MySQL 28th February 2019 Hello, Today we learn how to limit the number of login attempt using PHP & MySQL. Sometimes you need to add extra protection to the password-protected website. This article explains…
PHP How to optimize error display in PHP? 3rd December 2018 Introduction When it comes to coding in PHP, encountering syntax errors is inevitable. However, to efficiently debug and resolve these errors, it is crucial to have proper error display settings.…
PHP Use bcrypt for storing passwords in PHP 25th November 2018 In this blog, you will learn how to encrypt the password using bcrypt password hash method. Always Use bcrypt for storing passwords in PHP it’s encrypted and safe. bcrypt is a password…