Array in PHP | PHP Array
An array is a kind of special variable having more than one value which shares same name but different index or id. What is an array in PHP? An array…
Loops in PHP | Control Structure in PHP
1. While Loop in PHP : Syntax : while(expression) { Statements to be executed; } It executed the nested statements repeatedly as long as the while expression evaluates to TRUE.…