Recently i ask how to populate years and i thought that i have all the answer i need. Thing is that i have a new problem with days. The problem seems to be more of mysql than php. In my table users, birthday field, i put "date" as the type which is in this format: 0000-00-00. Now when i use the current select box "day", it inserts 2 instead of 02 and then compromises the whole format when i join $year.$month.$day giving me and output like 1988-11-. How can i solve this? This is the code for days (the year is similar, and it's in the link above). Thanks

<? 
$bday = $r['birthday'];
$part = explode("-", $bday);
$year = $part[0];
$month = $part[1];
$day = $part[2]; ?>
<select name="day">
    <? for($i = 1; $i <= 31; $i++){?>
    <option value="<? echo $i. '"'; if ($day == $i) {echo 'selected="selected"';}?>"><?echo $i;?></option>  <? }?>
</select>
link|improve this question

Oh i can't change mysql type now because it already have real user information – chenci Feb 21 at 5:11
feedback

2 Answers

up vote 1 down vote accepted

You can try

$bday = $r['birthday'];
$part = explode("-", $bday);
$year = $part[0];
$month = $part[1];
$day = $part[2]; ?>
<select name="day">
    <? for($i = 1; $i <= 31; $i++){?>
    <option value="<? echo str_pad($i, 2, "0", STR_PAD_LEFT) . '"'; if ($day == $i) {echo 'selected="selected"';}?>"><?echo str_pad($i, 2, "0", STR_PAD_LEFT);?></option>  <? }?>
</select>
link|improve this answer
Worked great, haha never knew of a str_pad, guess i need to read more php man. Thanks – chenci Feb 21 at 5:27
You can study further from here. php.net/manual/en/function.str-pad.php. Good luck friend. – Prasad Rajapaksha Feb 21 at 5:37
feedback
<select name="day">
    <? for($i = 1; $i <= 31; $i++){?>
    <option value="<? echo ($i < 10 ? '0' . $i : $i). '"'; if ($day == $i) {echo 'selected="selected"';}?>"><?echo $i;?></option>  <? }?>
</select>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.