Advertisements
Advertisements
Question
Define Looping Structure in PHP.
Definition
Short Note
Solution
- Looping Structures are useful for writing iteration logics.
- It is the most important feature of many programming languages, including PHP.
- They are implemented using the following categories,
- for Loop
- While Loop
- foreach Loop
- Do While Loop
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Loops that iterate for fixed number of times is called ______.
What will be displayed in a browser when the following PHP code is executed;
<?php
for ($counter = 10; $counter < 10;
$counter = $counter + 5){
echo “Hello”;
}
?>
Define for loop in PHP.
Write Syntax of For each loop in PHP.
Write Syntax of while loop in PHP.
Write the purpose of Looping Structure in PHP.
Write short notes on Do while Loop.
Differentiate While and Do while loops.
Discuss in detail about Foreach loop.
Explain the process Do while loop.