Let me see if i have your question correctly.
day:14 <---- auto picked by actual day
Month:6 <--- auto picked by actual month
Year:2003 <--- auto picked by year.
Why the drop down. do you want them to select other dates?
If so what you ask only requires you creating a option block within a for looping statement. Using exceptions for months with less than 31 days.
I will give you an example of the month.
echo "Month:<select>";
$month =date("n");
for($countmonth = 1; $countermonth <= 12; $countermonth++)
{
if($countermonth == "$month")
{
echo "<option selected value=$countermonth>$countermonth<br>";
}
else
{
echo "<option value=$countermonth>$countermonth<br>";
}
}
echo "</select>";
this shows the current month in the drop down and then gives an oiption to go up or down for month....