Learn Before
Concept

The PHP while Loop

While the provided condition is true, the while loop runs a block of code.

<?php while (condition is true) { code to be executed; } ?>

0

1

Updated 2023-02-01

References


Tags

Object-Oriented Programming (OOP) Languages

Related