> do...while Statement in php ~ Online tutorial

do...while Statement in php

The do...while Statement
The do...while statement will execute a block of code at least once - it then will repeat the loop as long as a condition is true.
Syntax

do
{
code to be executed;
}
while (condition);



Example
The following example will increment the value of i at least once, and it will continue incrementing
the variable i as long as it has a value of less than 5:



<html>
<body>
<?php
$i=0;
do
{
$i++;
echo "The number is " . $i . " ";
}
while ($i<5)
</body>
</html>

Please Give Us Your 1 Minute In Sharing This Post!
Please Give Us Your 1 Minute In Sharing This Post!
SOCIALIZE IT →
FOLLOW US →
SHARE IT →
Powered By: BloggerYard.Com

0 comments: