Mesut Tunga wrote:
>
> Hi All,
>
> a for statment like below has been worked lowe php versions:
>
> for ( $idx = "01"; $idx <= 12; $idx++ )
> {
>echo " $idx\n";
> }
>
> like 01, 02, 03, 04, ... 12
>
> but same statment on 4.0.6 version, it writes
>
> 01, 2, 3, 4, ... 12
>
> what
Hi All,
a for statment like below has been worked lowe php versions:
for ( $idx = "01"; $idx <= 12; $idx++ )
{
echo " $idx\n";
}
like 01, 02, 03, 04, ... 12
but same statment on 4.0.6 version, it writes
01, 2, 3, 4, ... 12
what is the different between verisons? or how can I solve
Hi All,
a for statment like below has been worked lowe php versions:
for ( $idx = "01"; $idx <= 12; $idx++ )
{
echo " $idx\n";
}
like 01, 02, 03, 04, ... 12
but same statment on 4.0.6 version, it writes
01, 2, 3, 4, ... 12
what is the different between verisons? or how can I solve
3 matches
Mail list logo