In PHP, variables can be declared anywhere in the script. PHP has three different variable scopes: local global Local Scope: A variable declared inside the […]
Read MoreBlog
Function in PHP
Function in PHP- PHP functions are similar to other programming languages. A function is a piece of code that takes one more input in the […]
Read MoreVariables & Data Types in PHP
A Variable is simply a container i.e. used to store both numeric and non-numeric information. Variable is the name of a memory location. Rules for […]
Read MorePHP Conditional Statements & Loops
Conditional statements are used to perform different actions based on different conditions. PHP supports different types of conditional statements PHP Conditional Statements & Loops if […]
Read MoreOperators, Expressions and Constants in PHP
Operators in PHP operator is a character that represents an action or a process. Operators take one or more values, process them, and produce results. […]
Read More