0
0
PHPprogramming~15 mins

Why loops are needed in PHP - See It in Action

Choose your learning style9 modes available
Why loops are needed
📖 Scenario: Imagine you have a list of fruits and you want to say hello to each fruit one by one.
🎯 Goal: You will create a list of fruits, set up a counter, use a loop to greet each fruit, and then print all greetings.
📋 What You'll Learn
Create an array called fruits with the values 'Apple', 'Banana', and 'Cherry'
Create a variable called count and set it to 0
Use a while loop with the condition $count < count($fruits)
Inside the loop, print Hello, followed by the fruit at index $count
Increment $count by 1 inside the loop
💡 Why This Matters
🌍 Real World
Loops are used in real life to do repeated tasks like sending emails to many people or checking every item in a list.
💼 Career
Knowing loops is important for any programming job because they help automate repetitive work efficiently.
Progress0 / 4 steps
1
Create the fruits array
Create an array called $fruits with these exact values: 'Apple', 'Banana', and 'Cherry'
PHP
Need a hint?

Use square brackets to create the array and separate values with commas.

2
Set up the counter
Create a variable called $count and set it to 0
PHP
Need a hint?

This variable will help us keep track of which fruit to greet next.

3
Use a while loop to greet each fruit
Use a while loop with the condition $count < count($fruits). Inside the loop, print Hello, followed by the fruit at index $count. Then increase $count by 1
PHP
Need a hint?

Remember to use count($fruits) to get the number of fruits and increase $count inside the loop.

4
Print the greetings
Run the program to print the greetings for each fruit using the loop you wrote
PHP
Need a hint?

Make sure your program prints each greeting on a new line.