Files
freeCodeCamp/guide/english/php/loops/index.md
2018-10-16 21:32:40 +05:30

478 B

title
title
Loops

Loops

Loops are used in PHP to perform repeated tasks based on a condition.

Conditions typically return true or false when analysed.

A loop will continue running until the defined condition returns false.

You can type php for , php while or php do while to get more info on any of these.

More Information