Advertisements
Advertisements
प्रश्न
Define Looping Structure in PHP.
व्याख्या
टीपा लिहा
Advertisements
उत्तर
- 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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
Which loop evaluates condition expression as Boolean, if it is true, it executes statements and when it is false it will terminate?
for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?
Define for loop in PHP.
Write Syntax of while loop in PHP.
Write Syntax of Do while loop in PHP.
Compare for loop and for each loop.
Explain the use of for each loop in PHP.
Differentiate For each and While loop.
Explain Looping Structure in PHP.
Explain concepts of for loop with example.
