Following is the syntax to display array values
do{ //statement1 //statement2 . . . n } while(yourCondition);
The PHP code is as follows −
Example
<!DOCTYPE html> <html> <body> <?php $values=array('John','David','Mike','Sam','Carol'); $i=0; $len=count($values); do{ echo $values[$i]," "; $i++; } while($i<$len) ?> </body> </html>
Output
John David Mike Sam Carol