1. Define Looping Structure in PHP.
Answers
Answered by
1
Answer:
Loops are used to execute the same block of code again and again, as long as a certain condition is true. In PHP, we have the following loop types: while - loops through a block of code as long as the specified condition is true
hope it helps u
Answered by
9
Answer:
- in PHP we have the following look X looks through a block of code as long as the specified condition is true do while loop through a block of code one and then repeats the loop as long as the specified condition is true for looks through a block of code a specified number of times
Similar questions