The do...while Statement : Do While : Language Basics PHP Source Code


PHP Source Code » Language Basics » Do While »

 

The do...while Statement







<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>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Language Basics
» Do While