I want to add 0's in front of the single digit numbers.
for($i_y=1950; $i<=2012; $i++) $years[]=$i_y;
for($i_m=1; $i<=12; $i++) $months[]=$i_m;
for($i_d=1; $i<=31; $i++) $days[]=$i_d;
tried
for($i_y=1950; $i<=2012; $i++) $years[]=$i_y;
for($i_m=01; $i<=12; $i++) $months[]=$i_m;
for($i_d=01; $i<=31; $i++) $days[]=$i_d;
it wasn't that simple, whats the correct way?
it's for a select options
Example
for($i=1; $i<=50; $i++)
$months=$i;
echo '<select name="month" select id="month">';
echo '<option value="">' . __("0" ) . '</option>';
foreach($months as $month){
$selected = '';
echo '<option value="' . $month . '" ' . $selected . '>' . $month . '</option>';
}
echo '</select>';
forloop it needs to be a number. Use @kuba's method below:$months[]=str_pad( $i_m, 2, '0', STR_PAD_LEFT );– Tieson T. Apr 22 '12 at 18:57