Skip to main content
Search
Search This Blog
Priya Digital World
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
July 20, 2021
while loop in PHP
<?php
$i
=
0
;
while
($i
<
5
) {
echo
"The value of i is "
;
echo
$i
+
1
;
// 0+1
echo
"<br>"
;
$i
++
;
//increment i by 1
//$i+=2;//increment i by 2
}
?
>
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