Cookies and Session in PHP are used to store the data and that are available throughout the site. Cookies and
Continue reading »Author: Rakesh
PHP Array – Indexing, Associative, Multidimensional
An array is the most important part of any programing language. It is very useful if you work on a
Continue reading »PHP Functions
In this article, we will cover the following topics: Introduction of Functions Declaring Functions Passing Arguments to Functions PHP Variables
Continue reading »Conditional Constructs in PHP
PHP conditional constructs are used to make decisions. Programmers check the different conditions and run blocks of code accordingly. It
Continue reading »PHP Loop: For, While, Do While And Foreach
PHP loops are used to execute a statement or a statement block, multiple times until and unless a specific condition
Continue reading »PHP Operators
PHP operators work on the variable or value which can be one or more. We can say that it takes
Continue reading »Data Types, Constants and Variables in PHP
In the previous article, we have learned Print Statement, Code Blocks, and Commenting. In this article, we will learn the
Continue reading »Print Statement, Code Blocks and Commenting in PHP
PHP is one of the most frequently used Web languages. On the back-end, the vast majority of websites that you visit are built with PHP.
Continue reading »Overview of PHP
PHP is an easy, server-side scripting language. This helps developers to build web page layout logic and handle data from
Continue reading »PHP MVC application: Model, View and Controller
MVC stands for Controller-View-Model is a method of application design, separating application data and business logic (model) from the presentation
Continue reading »