PHP supports which types of looping techniques;
a) for loop
b) while loop
c) for each loop
d) all the above
Answers
Answered by
0
d) all the above
Explanation:
hope this answers will help you plz
mark me as a brainlist
Answered by
0
Answer:
(d) all the above
Explanation:
In PHP, we have the following loop types:
while - loops through a block of code as long as the specified condition is true
do...while - loops through a block of code once, and then repeats the loop as long as the specified condition is true
for - loops through a block of code a specified number of times
foreach - loops through a block of code for each element in an array
Similar questions