I want to count with 0. I means if
$x = 002 $y = 999
Now I want to count it by keep the 00.
for ( $i = $x ; $i <= $y; $i++ )
{
echo $i;
}
but it echo - 002, 3, 4, 5
I want it to count by keep the 00. as like 005, 006, 007, 008, 009, 010, 011, 012.
Please help me. I need it. Thanks