Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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 true
- do...while - loops through a block of code once, and then repeats the loop as long as the specified condition is true
- for more :https://bit.ly/3FpsRI8
Add Comment
Please, Sign In to add comment