PHP Operators

This chapter is about the PHP Operators. What is Operator?: As its name suggests “operator” is a thing which can operate on different data. Or we can say that it is used to perform certain operations on data. PHP Operators are used in almost every operation you perform while programming.   To elaborate operator definition … Read more

Expressions in PHP

This chapter is about expressions in PHP. Anything which is having values we can call that as expressions in PHP. Examples: 12 2+2 $b $a = 10; [ad name=”Responsive Text”]   Any expression which is terminated by semicolon in PHP is called as ‘Statement’. In PHP programming, we use many statements to build complex and … Read more

PHP variables type

This chapter will explain PHP variables in details. What is variable? As its name suggests variable is a thing which can vary. In programming terms, the PHP variable is a container which can store data. And we can vary its data at any time we need. It’s basically a memory location having a specific memory address and having … Read more

PHP Syntax

In this tutorial, we will see the PHP syntax in details.To write PHP code you need to surround it using PHP tags. This will differentiate PHP code with other codes. There are four types of PHP syntax for tags. PHP syntaxes are as below: Long form syntax – <?php ….. ?> This is Most commonly … Read more

How to install PHP on windows

To install PHP on windows and to run any PHP application you require 3 basic components: 1. Web server software: This is just a virtual web server which runs on your PC. For Windows system default is Internet Information System (IIS). And other is Apache server, which is free and widely used to install PHP on windows. … Read more

PHP Programming Introduction

In PHP programming introduction we will see what exactly is PHP, where it is used for and its features. PHP is widely used for web application development. So before beginning with PHP programming introduction, first let us see what is a web application and then we will see how we can use PHP to develop a web application. … Read more

Sending email using CakePHP 3

CakePHP 3 send email functionality is having certain steps to follow, for proper setup and working. I found sending email in CakePHP 3 somewhat tricky. So I am always following certain steps in sequence to setup CakePHP 3 send email functionality correctly. NOTE: In order to send emails from CakePHP 3 using your server, you … Read more

Fatal error: You must enable the intl extension to use CakePHP

“Fatal error: You must enable the intl extension to use CakePHP”, In this post you will know how to deal with a problem of “php_intl.dll” error. Its a common error error occurs when implementing an application using Cakephp. Let’s see how to solve the problem of “php_intl.dll” error. this error occurs when “php_intl.dll” is not … Read more

CakePHP 3 Change Password functionality with validations

CakePHP 3 Change Password is explained in this post. Change Password is very common functionality in every website. In this post, I will explain how we can implement it with server-side validations and the steps involved in it. To implement CakePhp 3 Change Password functionality in CakePHP 3 with validations, we will follow 5 steps of … Read more