sissou123

Untitled

Oct 19th, 2023
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | Source Code | 0 0
  1. Loops are used to execute the same block of code again and again, as long as a certain condition is true.
  2.  
  3. In PHP, we have the following loop types:
  4.  
  5. while - loops through a block of code as long as the specified condition is true
  6. do...while - loops through a block of code once, and then repeats the loop as long as the specified condition is true
  7. for more :https://bit.ly/3FpsRI8
Add Comment
Please, Sign In to add comment