PHP Loops
Posted 2024-05-17 07:48:35
0
4K
In the following chapters you will learn how to repeat code by using loops in PHP.
PHP Loops
Often when you write code, you want the same block of code to run over and over again a certain number of times. So, instead of adding several almost equal code-lines in a script, we can use loops.
Loops are used to execute the same block of code again and again, as long as a certain condition is true.
In PHP, we have the following loop types:
while
- loops through a block of code as long as the specified condition is truedo...while
- loops through a block of code once, and then repeats the loop as long as the specified condition is truefor
- loops through a block of code a specified number of timesforeach
- loops through a block of code for each element in an array
The following chapters will explain and give examples of each loop type.
Search
Categories
- Art
- Causes
- Crafts
- Dance
- Drinks
- Film
- Fitness
- Food
- Games
- Gardening
- Health
- Home
- Literature
- Music
- Networking
- Other
- Party
- Religion
- Shopping
- Sports
- Theater
- Wellness
Read More
PHP echo and print Statements
With PHP, there are two basic ways to get output: echo and print.
In this...
PHP Add Array Items
Add Array Item
To add items to an existing array, you can use the bracket [] syntax....
PHP Access Arrays
Access Array Item
To access an array item, you can refer to the index number for indexed arrays,...
PHP Math
PHP has a set of math functions that allows you to perform mathematical tasks on numbers.
PHP...
PHP Sorting Arrays
The elements in an array can be sorted in alphabetical or numerical order, descending or...