do while PHP loop
do while loop will execute until the condition of this loop is true. Please don't forget to adjust the value of the variable inside this loop that is used in the condition of that loop. If the value of that variable is not adjusted then there is a risk of entering infinite loop, where the code inside the loop will repeat.
Comments
Post a Comment