<html> <head> <title>The do...while Statement</title> </head> <body> <?php $num = 1; do{ print "Execution number: $num<br>\n"; $num++; } while ( $num > 200 && $num < 400 ); ?> </body> </html>