<select name="rDate" id="select3">
<?php
$today= time();
for($i = 1; $i <= 3; $i++)
{
$date = strtotime("+i day", $today);
printf("<option value='%s'>%s</option>\n", date('Y-m-d', $date), date('D jS M', $date));
}
?>
</select>
I'm assuming it would be more useful to have the select element actually return a 'yyyy-mm-dd' value, but if you really just want the "Day date Month" format, just remove the "value='%s' from the printf() format string along with the 2nd parameter to it.