do .. while loop , break and continue
-------------------------------------
It is also a type of loop, which is used to repeat a statement
again and again upto some conditions.
syntax:
do{
statements;
inc/dec;
}while(condition);
#dowhile
#break
#continue
#php