Skip to main content
Search
Search This Blog
Priya Digital World
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
July 20, 2021
do while loop in PHP
<?php
/** it will run one time even if the condition is false
* do{
* statement;
* }while(condition);
*/
$i
=
35
;
do
{
echo
"
$i
<br>"
;
}
while
($i
<
5
);
$i
=
0
;
do
{
echo
"
$i
<br>"
;
$i
++
;
}
while
($i
<
5
);
?
>
Comments
Popular Posts
August 04, 2023
Falcon Integration in IMPS payment service
July 25, 2020
Python Data Structure Assignment_7.2 || Week 3
Comments
Post a Comment