answersLogoWhite

0

There are a number of different ways to loop using PHP. They're as follows:

  • For
  • Foreach
  • While
  • Do-while

Below are some examples of how each of these types of loop work.

For

for ($x = 0; $x < 100; $x++) {

echo $x.'
';

}

?>

Foreach

$array = array(1, 5, 8, 2, 9);

foreach ($array as $number) {

echo $number.'
';

}

?>

While

while ($x < 10) {

$x++;

echo $x.'
';

}

?>

Do-while

do {

$x++;

echo $x.'
';

} while ($x < 10);

?>

User Avatar

Wiki User

14y ago

Still curious? Ask our experts.

Chat with our AI personalities

BeauBeau
You're doing better than you think!
Chat with Beau
JudyJudy
Simplicity is my specialty.
Chat with Judy
CoachCoach
Success isn't just about winning—it's about vision, patience, and playing the long game.
Chat with Coach

Add your answer:

Earn +20 pts
Q: How do you create a loop using PHP?
Write your answer...
Submit
Still have questions?
magnify glass
imp