How to always show less than 2 position int number using php ?
This below code
<?PHP
for($i=0;$i<=100;$i++)
{
echo $i."<BR>";
}
?>
result will be like this
0
1
2
3
4
5
6
7
8
9
10
.
.
.
100
I want to always show less than 2 position int number. like this how can i apply my php code ?
01
02
03
04
05
06
07
08
09
10
.
.
.
100