0 Rosemarie posted How do you do a while loop in PHP ? How do you do a while loop in PHP ? Edit Question
0 jignesh answered Oct 8 '21 00:00 syntax of the while loop is : while(condition check){ //do something } work like this : $d=0; while($d<10){ echo $d; } it will print 1 2 3 .. 10 Edit Answer